1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 16:29:20 +00:00

Change "Exit" button to "Quit"

This commit is contained in:
Ryan Carsten Schmidt 2023-11-14 02:04:20 -06:00
parent 03a2d4df80
commit 6bb85c98ba

View File

@ -18,7 +18,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
if (MTLCopyAllDevices().count == 0) {
let alert = NSAlert()
alert.messageText = "This application requires a Metal-capable GPU"
alert.addButton(withTitle: "Exit")
alert.addButton(withTitle: "Quit")
alert.runModal()
let application = notification.object as! NSApplication