From 09f01d611c438fb0c476df2be1fbdc40389bfe9b Mon Sep 17 00:00:00 2001 From: Christian Kaiser Date: Sat, 27 Apr 2024 21:11:45 -0300 Subject: [PATCH] Fix editor tooltip flicker caused by _tree_changed --- editor/plugins/script_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index c48af906229..78c89849d00 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -1933,7 +1933,7 @@ 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(false); + overview_vbox->set_visible(help_overview_enabled); return; }