Fix checking unsaved changes only in current scene

(cherry picked from commit 107e62be70)
This commit is contained in:
Ignacio Etcheverry 2016-05-02 13:40:44 +02:00 committed by Rémi Verschelde
parent 78dc8e79c4
commit 97e30f4cd7
1 changed files with 5 additions and 1 deletions

View File

@ -4515,7 +4515,11 @@ void EditorNode::_scene_tab_script_edited(int p_tab) {
void EditorNode::_scene_tab_closed(int p_tab) {
current_option = SCENE_TAB_CLOSE;
tab_closing = p_tab;
if (unsaved_cache) {
bool unsaved = (p_tab==editor_data.get_edited_scene()) ?
saved_version!=editor_data.get_undo_redo().get_version() :
editor_data.get_scene_version(p_tab)!=0;
if (unsaved) {
confirmation->get_ok()->set_text("Yes");
//confirmation->get_cancel()->show();
confirmation->set_text("Close scene? (Unsaved changes will be lost)");