diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-16 09:05:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-16 09:05:17 +0200 |
commit | 2c0c1e3c16ee0a5dc853affa33cb958bd132a999 (patch) | |
tree | df4677578a2ad7571b1517e9c4f15aea2580cfd2 | |
parent | 87e42e4f66cbe29b2b16f87b0408cf00cf45013a (diff) | |
parent | 331f922359a7ec367542262822af47c683a4f734 (diff) |
Merge pull request #28067 from KoBeWi/save_layout_x3
Save opened scenes when necessary
-rw-r--r-- | editor/editor_node.cpp | 2 | ||||
-rw-r--r-- | editor/filesystem_dock.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 8a67002503..851d6a0aa6 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -1306,6 +1306,7 @@ void EditorNode::_dialog_action(String p_file) { _save_default_environment(); _save_scene_with_preview(p_file, scene_idx); _add_to_recent_scenes(p_file); + save_layout(); if (scene_idx != -1) _discard_changes(); @@ -4069,6 +4070,7 @@ void EditorNode::_load_open_scenes_from_config(Ref<ConfigFile> p_layout, const S for (int i = 0; i < scenes.size(); i++) { load_scene(scenes[i]); } + save_layout(); restoring_scenes = false; } diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 5a1383be6d..c32cd1de50 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -1021,6 +1021,7 @@ void FileSystemDock::_try_move_item(const FileOrFolder &p_item, const String &p_ for (int j = 0; j < ed->get_edited_scene_count(); j++) { if (ed->get_scene_path(j) == file_changed_paths[i]) { ed->get_edited_scene_root(j)->set_filename(new_item_path); + editor->save_layout(); break; } } |