Browse Source

Merge pull request #9448 from Noshyaar/pr1

EditorNode: request attention when quit while minimized
Rémi Verschelde 8 years ago
parent
commit
e2e73ec906
1 changed files with 3 additions and 0 deletions
  1. 3 0
      editor/editor_node.cpp

+ 3 - 0
editor/editor_node.cpp

@@ -2462,6 +2462,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
 						confirmation->popup_centered_minsize();
 					} else {
 						_discard_changes();
+						break;
 					}
 				} else {
 
@@ -2488,6 +2489,8 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
 					}
 				}
 
+				if (OS::get_singleton()->is_window_minimized())
+					OS::get_singleton()->request_attention();
 				break;
 			}