diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-14 11:42:00 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-06-19 09:44:38 +0200 |
commit | fbb879debd0957354ab42731be402b0a5a9f4e48 (patch) | |
tree | 1904b70039d8221e6732828420ef083814ac26ad /editor/property_selector.cpp | |
parent | ca18a06ecbf68db50d8d7e7391b73a245c745cea (diff) | |
download | redot-engine-fbb879debd0957354ab42731be402b0a5a9f4e48.tar.gz |
[Scene] Add `SceneStringNames::text/value_changed`
Diffstat (limited to 'editor/property_selector.cpp')
-rw-r--r-- | editor/property_selector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/property_selector.cpp b/editor/property_selector.cpp index 9bb1562148..0394c9e249 100644 --- a/editor/property_selector.cpp +++ b/editor/property_selector.cpp @@ -564,7 +564,7 @@ PropertySelector::PropertySelector() { //set_child_rect(vbc); search_box = memnew(LineEdit); vbc->add_margin_child(TTR("Search:"), search_box); - search_box->connect("text_changed", callable_mp(this, &PropertySelector::_text_changed)); + search_box->connect(SceneStringName(text_changed), callable_mp(this, &PropertySelector::_text_changed)); search_box->connect(SceneStringName(gui_input), callable_mp(this, &PropertySelector::_sbox_input)); search_options = memnew(Tree); search_options->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); |