AppDelegate // Mark the uninstall action button with red color.

This commit is contained in:
ShikiSuen 2023-01-07 21:27:23 +08:00
parent a62d684e2f
commit a3310be0e3
1 changed files with 5 additions and 0 deletions

View File

@ -105,6 +105,11 @@ extension AppDelegate {
alert.messageText = NSLocalizedString("Uninstallation", comment: "")
alert.informativeText = content
alert.addButton(withTitle: NSLocalizedString("OK", comment: ""))
if #available(macOS 11, *) {
alert.buttons.forEach { button in
button.hasDestructiveAction = true
}
}
alert.addButton(withTitle: NSLocalizedString("Not Now", comment: ""))
let result = alert.runModal()
NSApp.activate(ignoringOtherApps: true)