diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-06-05 16:42:58 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 16:42:58 -0300 |
commit | 4ea88aab4d3ac29f13a9ca9a36a23b5bc8434a2f (patch) | |
tree | 972a7cc284831e95d67008109fca11df5ad84bf8 /editor | |
parent | 8569a0db3cd7010b55181c8922262ee346f07546 (diff) | |
parent | 6676060805579ed228e1a1ef6f38742ad3b4fe36 (diff) |
Merge pull request #19384 from guilhermefelipecgs/fix_loses_focus
[Inspector] Fix search field losing focus when typing
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_inspector.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 531aa2f9dc..a6f159ce34 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -1638,6 +1638,7 @@ void EditorInspector::register_text_enter(Node *p_line_edit) { void EditorInspector::_filter_changed(const String &p_text) { + _clear(); update_tree(); } |