Fixed close current scene closing the wrong scene, issue 13844

This commit is contained in:
Paulb23 2017-12-10 12:48:03 +00:00
parent 7d735da6aa
commit bdde82169d

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: {