mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-17 08:51:52 +03:00
24 lines
695 B
Swift
24 lines
695 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()
|
|
}
|
|
|
|
static func showWalletConnectInstructions() {
|
|
let alert = Alert()
|
|
alert.messageText = "1 — Open dapp website\n\n2 — Click “Copy to clipboard”\nunder WalletConnect QR code\n\n3 — Open Encrypted Ink"
|
|
alert.alertStyle = .informational
|
|
alert.addButton(withTitle: "OK")
|
|
_ = alert.runModal()
|
|
}
|
|
|
|
}
|