[macOS] Refocus last key window after `DisplayServer::alert` is closed.

This commit is contained in:
bruvzg 2020-07-26 23:00:30 +03:00
parent d7e00a20a6
commit a05776e20d
No known key found for this signature in database
GPG Key ID: FCED35F1CECE0D3A
1 changed files with 4 additions and 0 deletions

View File

@ -1944,8 +1944,12 @@ void DisplayServerOSX::alert(const String &p_alert, const String &p_title) {
[window setInformativeText:ns_alert];
[window setAlertStyle:NSAlertStyleWarning];
id key_window = [[NSApplication sharedApplication] keyWindow];
[window runModal];
[window release];
if (key_window) {
[key_window makeKeyAndOrderFront:nil];
}
}
Error DisplayServerOSX::dialog_show(String p_title, String p_description, Vector<String> p_buttons, const Callable &p_callback) {