diff options
author | the-sink <lucianedean@gmail.com> | 2023-09-19 01:22:29 -0700 |
---|---|---|
committer | the-sink <lucianedean@gmail.com> | 2023-09-19 01:22:29 -0700 |
commit | 524e7acfc3fa58e3d63e6578677d21a52b315aa3 (patch) | |
tree | 407a2bdd9ddd9a669f470c55aa7f4be54da15e4c /editor/plugins/script_editor_plugin.cpp | |
parent | 571cd0eb791b37e9a8adda9f909251138170f6b7 (diff) | |
download | redot-engine-524e7acfc3fa58e3d63e6578677d21a52b315aa3.tar.gz |
Set `open_dominant_script_on_scene_change` to off by default
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 901ac91a46..d457906d0c 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -4354,7 +4354,7 @@ ScriptEditorPlugin::ScriptEditorPlugin() { EDITOR_GET("text_editor/behavior/files/auto_reload_scripts_on_external_change"); ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/behavior/files/auto_reload_and_parse_scripts_on_save", true)); - EDITOR_DEF("text_editor/behavior/files/open_dominant_script_on_scene_change", true); + EDITOR_DEF("text_editor/behavior/files/open_dominant_script_on_scene_change", false); EDITOR_DEF("text_editor/external/use_external_editor", false); EDITOR_DEF("text_editor/external/exec_path", ""); EDITOR_DEF("text_editor/script_list/script_temperature_enabled", true); |