Skip to content

Commit 55fa8b2

Browse files
committed
display(macOS): force resign key when showing error
This should already happen but maybe sometime it does not? Fixes #6352
1 parent 1819196 commit 55fa8b2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Platform/macOS/Display/VMDisplayWindowController.swift

+2
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ class VMDisplayWindowController: NSWindowController, UTMVirtualMachineDelegate {
210210

211211
@MainActor
212212
func showErrorAlert(_ message: String, completionHandler handler: ((NSApplication.ModalResponse) -> Void)? = nil) {
213+
window?.resignKey()
213214
let alert = NSAlert()
214215
alert.alertStyle = .critical
215216
alert.messageText = NSLocalizedString("Error", comment: "VMDisplayWindowController")
@@ -219,6 +220,7 @@ class VMDisplayWindowController: NSWindowController, UTMVirtualMachineDelegate {
219220

220221
@MainActor
221222
func showConfirmAlert(_ message: String, confirmHandler handler: (() -> Void)? = nil) {
223+
window?.resignKey()
222224
let alert = NSAlert()
223225
alert.alertStyle = .informational
224226
alert.messageText = NSLocalizedString("Confirmation", comment: "VMDisplayWindowController")

0 commit comments

Comments
 (0)