diff options
| author | Guilherme Felipe | 2018-06-05 14:12:01 -0300 |
|---|---|---|
| committer | Guilherme Felipe | 2018-06-05 14:12:01 -0300 |
| commit | 6676060805579ed228e1a1ef6f38742ad3b4fe36 (patch) | |
| tree | 7a410ce54ffb7233f61283b9f82ca4b36e8c1e33 /editor/editor_inspector.cpp | |
| parent | 6a69f92370ba82befdfdf3c2f798b6b2fd6df1fb (diff) | |
| download | godot-6676060805579ed228e1a1ef6f38742ad3b4fe36.tar.gz godot-6676060805579ed228e1a1ef6f38742ad3b4fe36.tar.zst godot-6676060805579ed228e1a1ef6f38742ad3b4fe36.zip | |
[Inspector] Fix search field losing focus when typing
Fix #19382
Diffstat (limited to '')
| -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 531aa2f9d..a6f159ce3 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(); } |
