PrefMgr // Disable an option for macOS 11 and earlier.
This commit is contained in:
parent
18a0c243d2
commit
0a657d9be8
|
@ -20,6 +20,9 @@ public extension PrefMgr {
|
||||||
showReverseLookupInCandidateUI = false
|
showReverseLookupInCandidateUI = false
|
||||||
shareAlphanumericalModeStatusAcrossClients = false
|
shareAlphanumericalModeStatusAcrossClients = false
|
||||||
}
|
}
|
||||||
|
if #unavailable(macOS 12) {
|
||||||
|
showNotificationsWhenTogglingCapsLock = false
|
||||||
|
}
|
||||||
// 自動糾正選字鍵 (利用其 didSet 特性)
|
// 自動糾正選字鍵 (利用其 didSet 特性)
|
||||||
candidateKeys = candidateKeys
|
candidateKeys = candidateKeys
|
||||||
// 客體黑名單資料類型升級。
|
// 客體黑名單資料類型升級。
|
||||||
|
|
Loading…
Reference in New Issue