Merge pull request #14501 from Paulb23/close_wrong_scene_issue_13844

Fixed close current scene closing the wrong scene, issue 13844
This commit is contained in:
Rémi Verschelde 2017-12-10 14:11:13 +01:00 committed by GitHub
commit 6b6f94fb0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1884,7 +1884,10 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
save_confirmation->set_text(vformat(TTR("Save changes to '%s' before closing?"), scene_filename != "" ? scene_filename : "unsaved scene"));
save_confirmation->popup_centered_minsize();
break;
} else {
tab_closing = editor_data.get_edited_scene();
}
} // fallthrough
case SCENE_TAB_CLOSE:
case FILE_SAVE_SCENE: {