diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-26 10:48:57 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-26 10:48:57 +0100 |
commit | abe73c3db0e2013cabae2e8e593ddba7d9aad599 (patch) | |
tree | 52aa60d04255c0aaba35a76ddd15c47d74e1cd5a /editor/plugins/script_editor_plugin.cpp | |
parent | 7e567c4777db1dc6d24c15e9c20d339448eae05a (diff) | |
parent | 943f6aa1134856fe9afe37465d7521a30e1c07ba (diff) | |
download | redot-engine-abe73c3db0e2013cabae2e8e593ddba7d9aad599.tar.gz |
Merge pull request #88675 from MajorMcDoom/script-editor-redundancy
Remove some redundant method calls from ScriptEditor
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-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 4a127e5d87..d639121ae0 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -867,8 +867,6 @@ void ScriptEditor::_close_tab(int p_idx, bool p_save, bool p_history_back) { if (script_close_queue.is_empty()) { _update_history_arrows(); _update_script_names(); - _update_members_overview_visibility(); - _update_help_overview_visibility(); _save_layout(); _update_find_replace_bar(); } @@ -1671,7 +1669,6 @@ void ScriptEditor::_notification(int p_what) { recent_scripts->reset_size(); if (is_inside_tree()) { - _update_script_colors(); _update_script_names(); } } break; @@ -2821,7 +2818,6 @@ void ScriptEditor::_apply_editor_settings() { EditorSettings::get_singleton()->load_text_editor_theme(); } - _update_script_colors(); _update_script_names(); ScriptServer::set_reload_scripts_on_save(EDITOR_GET("text_editor/behavior/files/auto_reload_and_parse_scripts_on_save")); |