From efcdf40d0c92709b48a50c57574b3f7612af57e0 Mon Sep 17 00:00:00 2001 From: Ovnuniarchos Date: Tue, 13 Feb 2024 23:26:54 +0100 Subject: [PATCH] FIXED: Trying to connect inexistent signal text_submitted. --- editor/editor_properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 5c9c8480f..8d2b4a2bc 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -438,7 +438,7 @@ EditorPropertyLocale::EditorPropertyLocale() { add_child(locale_hb); locale = memnew(LineEdit); locale_hb->add_child(locale); - locale->connect("text_submitted", this, "_locale_selected"); + locale->connect("text_entered", this, "_locale_selected"); locale->connect("focus_exited", this, "_locale_focus_exited"); locale->set_h_size_flags(SIZE_EXPAND_FILL);