We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d18054 + 9b6f5cb commit 3e70fd7Copy full SHA for 3e70fd7
editor/plugins/script_editor_plugin.cpp
@@ -2016,7 +2016,10 @@ void ScriptEditor::_update_members_overview_visibility() {
2016
if (!se) {
2017
members_overview_alphabeta_sort_button->set_visible(false);
2018
members_overview->set_visible(false);
2019
- overview_vbox->set_visible(help_overview_enabled);
+
2020
+ Node *current = tab_container->get_tab_control(tab_container->get_current_tab());
2021
+ EditorHelp *editor_help = Object::cast_to<EditorHelp>(current);
2022
+ overview_vbox->set_visible(help_overview_enabled && editor_help);
2023
return;
2024
}
2025
0 commit comments