diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-26 23:28:14 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-26 23:28:14 +0200 |
commit | ac5a5286201d05814774b55cb5a34e7116521b76 (patch) | |
tree | e52c030ae37c86ff375e42d6df93d334a4ff9a2b /editor | |
parent | 588cf166301f60bc60d45d548a9464781d146c86 (diff) | |
parent | 0d1c38899188f18eea81ac670e32c8a6cbb13ade (diff) | |
download | redot-engine-ac5a5286201d05814774b55cb5a34e7116521b76.tar.gz |
Merge pull request #84944 from KoBeWi/legacy_of_ancient_godots
Fix some legacy code
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 9da66a0862..213af652ca 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -4415,13 +4415,9 @@ bool ScriptEditorPlugin::handles(Object *p_object) const { void ScriptEditorPlugin::make_visible(bool p_visible) { if (p_visible) { window_wrapper->show(); - script_editor->set_process(true); script_editor->ensure_select_current(); } else { window_wrapper->hide(); - if (!window_wrapper->get_window_enabled()) { - script_editor->set_process(false); - } } } |