mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 06:03:38 +00:00
Merge pull request #33009 from ebert83/fix_editor_save_layout
Fix layout saving error
This commit is contained in:
commit
2d6cf9cc56
@ -1470,7 +1470,7 @@ void EditorNode::_dialog_action(String p_file) {
|
||||
config.instance();
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_editor_layouts_config());
|
||||
|
||||
if (err == ERR_CANT_OPEN) {
|
||||
if (err == ERR_FILE_CANT_OPEN || err == ERR_FILE_NOT_FOUND) {
|
||||
config.instance(); // new config
|
||||
} else if (err != OK) {
|
||||
show_warning(TTR("Error trying to save layout!"));
|
||||
|
Loading…
Reference in New Issue
Block a user