mirror of
https://github.com/godotengine/godot.git
synced 2025-11-03 15:11:19 +00:00
Fix empty Script Editor members overview visible
This commit is contained in:
parent
fc1ffeb5e0
commit
9b6f5cb953
1 changed files with 4 additions and 1 deletions
|
|
@ -2016,7 +2016,10 @@ void ScriptEditor::_update_members_overview_visibility() {
|
|||
if (!se) {
|
||||
members_overview_alphabeta_sort_button->set_visible(false);
|
||||
members_overview->set_visible(false);
|
||||
overview_vbox->set_visible(help_overview_enabled);
|
||||
|
||||
Node *current = tab_container->get_tab_control(tab_container->get_current_tab());
|
||||
EditorHelp *editor_help = Object::cast_to<EditorHelp>(current);
|
||||
overview_vbox->set_visible(help_overview_enabled && editor_help);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue