diff options
| author | Pedro J. Estébanez | 2017-03-21 12:47:05 +0100 |
|---|---|---|
| committer | Pedro J. Estébanez | 2017-03-21 12:47:05 +0100 |
| commit | e1d18e64816325f852355a6e6d4eb3f8feead714 (patch) | |
| tree | 415f1ae94eee720ae5a9c3b58b1578900694fb52 /editor/editor_settings.cpp | |
| parent | 9c75b9dddf18abf315f62caa6745daa05d4adbaf (diff) | |
| download | godot-e1d18e64816325f852355a6e6d4eb3f8feead714.tar.gz godot-e1d18e64816325f852355a6e6d4eb3f8feead714.tar.zst godot-e1d18e64816325f852355a6e6d4eb3f8feead714.zip | |
Add editor option for automatically closing the output when stopping the game
(back-ported from 1bd1af776c111f1efdd9a3b0259d8f916c052ef2)
Diffstat (limited to 'editor/editor_settings.cpp')
| -rw-r--r-- | editor/editor_settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 8c2ba58a4..16b9c8e6f 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -641,6 +641,8 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { set("resources/save_compressed_resources", true); set("resources/auto_reload_modified_images", true); + set("run/always_close_output_on_stop", false); + set("import/automatic_reimport_on_sources_changed", true); if (p_extra_config.is_valid()) { |
