mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Merge pull request #9448 from Noshyaar/pr1
EditorNode: request attention when quit while minimized
This commit is contained in:
commit
e2e73ec906
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user