1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
Juan Linietsky
2016-05-03 22:32:38 -03:00
278 changed files with 13158 additions and 5177 deletions

View File

@@ -4668,8 +4668,13 @@ 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(TTR("Yes"));
//confirmation->get_cancel()->show();
confirmation->set_text(TTR("Close scene? (Unsaved changes will be lost)"));
confirmation->popup_centered_minsize();