Skip to content

Commit

Permalink
Merge pull request #81906 from the-sink/dominant-script-default
Browse files Browse the repository at this point in the history
Set `open_dominant_script_on_scene_change` to off by default
  • Loading branch information
akien-mga committed May 7, 2024
2 parents 259d576 + 524e7ac commit 68bd282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/plugins/script_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 68bd282

Please sign in to comment.