You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-02 16:48:55 +00:00
CreateDialog: select root if search exactly match
(cherry picked from commit 9fb90d7aea)
This commit is contained in:
committed by
Rémi Verschelde
parent
1fea09bfeb
commit
76955cc187
@@ -222,7 +222,7 @@ void CreateDialog::_update_search() {
|
||||
}
|
||||
|
||||
List<StringName>::Element *I = type_list.front();
|
||||
TreeItem *to_select = NULL;
|
||||
TreeItem *to_select = search_box->get_text() == base_type ? root : NULL;
|
||||
|
||||
for (; I; I = I->next()) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user