diff options
author | kit <kitbdev@gmail.com> | 2024-08-19 18:08:31 -0400 |
---|---|---|
committer | kit <kitbdev@gmail.com> | 2024-09-09 11:06:18 -0400 |
commit | 5e1c9d68aad00ad025a14f4a1907b92a6f7f6310 (patch) | |
tree | 2772c83f7f4b89b5a422113726b3c0611d4f0b30 /editor/editor_help_search.cpp | |
parent | d0dc3896ad6fe039e4ad0607d901c81197cb3a3b (diff) | |
download | redot-engine-5e1c9d68aad00ad025a14f4a1907b92a6f7f6310.tar.gz |
Extract editor main screen
Diffstat (limited to 'editor/editor_help_search.cpp')
-rw-r--r-- | editor/editor_help_search.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_help_search.cpp b/editor/editor_help_search.cpp index 987c7f9c31..11be765bc2 100644 --- a/editor/editor_help_search.cpp +++ b/editor/editor_help_search.cpp @@ -32,6 +32,7 @@ #include "core/os/keyboard.h" #include "editor/editor_feature_profile.h" +#include "editor/editor_main_screen.h" #include "editor/editor_node.h" #include "editor/editor_settings.h" #include "editor/editor_string_names.h" @@ -201,7 +202,7 @@ void EditorHelpSearch::_confirmed() { } // Activate the script editor and emit the signal with the documentation link to display. - EditorNode::get_singleton()->set_visible_editor(EditorNode::EDITOR_SCRIPT); + EditorNode::get_singleton()->get_editor_main_screen()->select(EditorMainScreen::EDITOR_SCRIPT); emit_signal(SNAME("go_to_help"), item->get_metadata(0)); |