summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_editor_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-07 16:49:07 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-07 16:49:07 +0200
commit68bd282c505cd84eddb645592a47d53055a53ba0 (patch)
tree614b0a30f6ccce52bab6b1faa4d6ad35a9898568 /editor/plugins/script_editor_plugin.cpp
parent259d576f6ead7decf74bb60126130f88af05f1bb (diff)
parent524e7acfc3fa58e3d63e6578677d21a52b315aa3 (diff)
downloadredot-engine-68bd282c505cd84eddb645592a47d53055a53ba0.tar.gz
Merge pull request #81906 from the-sink/dominant-script-default
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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index e901f38944..2f479527f3 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -4479,7 +4479,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);