diff options
| author | Juan Linietsky | 2018-01-12 17:18:40 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2018-01-12 17:18:40 -0300 |
| commit | 702e28f2657b3b0f50c1e118caf207c0a438f8f1 (patch) | |
| tree | 2530c29326d50a14237525fac95482a745d37199 /editor/editor_settings.cpp | |
| parent | e56b3439a5e8bf56c4b843e044a96f1446564745 (diff) | |
| download | godot-702e28f2657b3b0f50c1e118caf207c0a438f8f1.tar.gz godot-702e28f2657b3b0f50c1e118caf207c0a438f8f1.tar.zst godot-702e28f2657b3b0f50c1e118caf207c0a438f8f1.zip | |
Properly save the new save safe setting, avoid crash.
Diffstat (limited to '')
| -rw-r--r-- | editor/editor_settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 86000d774..122034eaa 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -513,6 +513,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { _initial_set("filesystem/resources/auto_reload_modified_images", true); _initial_set("filesystem/import/automatic_reimport_on_sources_changed", true); + _initial_set("filesystem/on_save/safe_save_on_backup_then_rename", true); if (p_extra_config.is_valid()) { |
