mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-14 06:26:41 +03:00
16 lines
344 B
Swift
16 lines
344 B
Swift
// Copyright © 2021 Encrypted Ink. All rights reserved.
|
|
|
|
import Cocoa
|
|
|
|
class Alert: NSAlert {
|
|
|
|
override func runModal() -> NSApplication.ModalResponse {
|
|
defer {
|
|
Agent.shared.statusBarButtonIsBlocked = false
|
|
}
|
|
Agent.shared.statusBarButtonIsBlocked = true
|
|
return super.runModal()
|
|
}
|
|
|
|
}
|