diff options
author | 2019-01-22 12:57:27 +0530 | |
---|---|---|
committer | 2019-01-22 12:57:32 +0530 | |
commit | 6f9fa35c5ac195cde1db89839c84dacf37d0726e (patch) | |
tree | 4d6035a6118e69692a8ef8a3e81b45a5eff8b815 /WireGuard/WireGuard/UI/macOS/View | |
parent | macOS: Fix crash when importing using NoTunnelsDetailVC's button (diff) | |
download | wireguard-apple-6f9fa35c5ac195cde1db89839c84dacf37d0726e.tar.xz wireguard-apple-6f9fa35c5ac195cde1db89839c84dacf37d0726e.zip |
macOS: Disable save button if the syntax highlighter detects any errors
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard/WireGuard/UI/macOS/View')
-rw-r--r-- | WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift b/WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift index bf0f822..bc019f8 100644 --- a/WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift +++ b/WireGuard/WireGuard/UI/macOS/View/ConfTextView.swift @@ -7,7 +7,7 @@ class ConfTextView: NSTextView { private let confTextStorage = ConfTextStorage() - var hasError: Bool { return confTextStorage.hasError } + @objc dynamic var hasError: Bool = false @objc dynamic var privateKeyString: String? override var string: String { @@ -58,6 +58,9 @@ extension ConfTextView: NSTextViewDelegate { func textDidChange(_ notification: Notification) { confTextStorage.highlightSyntax() + if hasError != confTextStorage.hasError { + hasError = confTextStorage.hasError + } if privateKeyString != confTextStorage.privateKeyString { privateKeyString = confTextStorage.privateKeyString } |