Use Core/Scene stringnames consistently
This commit is contained in:
@ -552,7 +552,7 @@ PropertySelector::PropertySelector() {
|
||||
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("gui_input", callable_mp(this, &PropertySelector::_sbox_input));
|
||||
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);
|
||||
vbc->add_margin_child(TTR("Matches:"), search_options, true);
|
||||
|
||||
Reference in New Issue
Block a user