diff options
author | trollodel <33117082+trollodel@users.noreply.github.com> | 2022-11-02 15:23:25 +0100 |
---|---|---|
committer | trollodel <33117082+trollodel@users.noreply.github.com> | 2023-05-10 09:14:21 +0200 |
commit | b4d6b47c17f76f3d02fc11cc973a373769b19619 (patch) | |
tree | 23bc6395aaf2af208f5744580ce7100d74cd9f55 /editor/editor_help_search.cpp | |
parent | 769d8a7bbe6f59a8a7cae0194b65bf078c9bb2b4 (diff) | |
download | redot-engine-b4d6b47c17f76f3d02fc11cc973a373769b19619.tar.gz |
Add multi window code and shader editors
Diffstat (limited to 'editor/editor_help_search.cpp')
-rw-r--r-- | editor/editor_help_search.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/editor_help_search.cpp b/editor/editor_help_search.cpp index 204d918989..6aa508f40e 100644 --- a/editor/editor_help_search.cpp +++ b/editor/editor_help_search.cpp @@ -117,8 +117,11 @@ void EditorHelpSearch::_notification(int p_what) { _update_icons(); } break; - case NOTIFICATION_ENTER_TREE: { + case NOTIFICATION_READY: { connect("confirmed", callable_mp(this, &EditorHelpSearch::_confirmed)); + } break; + + case NOTIFICATION_THEME_CHANGED: { _update_icons(); } break; |