diff options
author | kobewi <kobewi4e@gmail.com> | 2024-04-23 23:33:01 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-04-23 23:33:01 +0200 |
commit | fd3ed998cee3ab660e1e76f027521d89bfb7789e (patch) | |
tree | f4f676da0aac006e06f1a3758dc12367b67f83bd /editor/plugins/script_editor_plugin.h | |
parent | c7f56d327d265fa7b2541fe7c5e6cc1730661749 (diff) | |
download | redot-engine-fd3ed998cee3ab660e1e76f027521d89bfb7789e.tar.gz |
Further speed up closing multiple scripts
Diffstat (limited to 'editor/plugins/script_editor_plugin.h')
-rw-r--r-- | editor/plugins/script_editor_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.h b/editor/plugins/script_editor_plugin.h index 0252e10b43..f87cb0958c 100644 --- a/editor/plugins/script_editor_plugin.h +++ b/editor/plugins/script_editor_plugin.h @@ -374,7 +374,7 @@ class ScriptEditor : public PanelContainer { void _close_tab(int p_idx, bool p_save = true, bool p_history_back = true); void _update_find_replace_bar(); - void _close_current_tab(bool p_save = true); + void _close_current_tab(bool p_save = true, bool p_history_back = true); void _close_discard_current_tab(const String &p_str); void _close_docs_tab(); void _close_other_tabs(); |