You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-19 14:31:59 +00:00
Merge pull request #21381 from YeldhamDev/members_help_overview_fix
Fix Members/Help Overview getting their items deselected when a tooltip appears
This commit is contained in:
@@ -1692,7 +1692,6 @@ void ScriptEditor::_update_script_names() {
|
|||||||
if (restoring_layout)
|
if (restoring_layout)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
waiting_update_names = false;
|
|
||||||
Set<Ref<Script> > used;
|
Set<Ref<Script> > used;
|
||||||
Node *edited = EditorNode::get_singleton()->get_edited_scene();
|
Node *edited = EditorNode::get_singleton()->get_edited_scene();
|
||||||
if (edited) {
|
if (edited) {
|
||||||
@@ -1816,8 +1815,12 @@ void ScriptEditor::_update_script_names() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_update_members_overview();
|
if (!waiting_update_names) {
|
||||||
_update_help_overview();
|
_update_members_overview();
|
||||||
|
_update_help_overview();
|
||||||
|
} else {
|
||||||
|
waiting_update_names = false;
|
||||||
|
}
|
||||||
_update_members_overview_visibility();
|
_update_members_overview_visibility();
|
||||||
_update_help_overview_visibility();
|
_update_help_overview_visibility();
|
||||||
_update_script_colors();
|
_update_script_colors();
|
||||||
|
|||||||
Reference in New Issue
Block a user