mgrPrefs // Force minimum mark length to reflect changes.

This commit is contained in:
ShikiSuen 2022-09-19 14:20:25 +08:00
parent f02cb01a24
commit d06d81829d
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ public enum mgrPrefs {
@UserDefault(key: UserDef.kMaxCandidateLength.rawValue, defaultValue: 10)
static var maxCandidateLength: Int
static var allowedMarkLengthRange: ClosedRange<Int> = mgrPrefs.minCandidateLength...mgrPrefs.maxCandidateLength
static var allowedMarkLengthRange: ClosedRange<Int> { mgrPrefs.minCandidateLength...mgrPrefs.maxCandidateLength }
@UserDefault(key: UserDef.kShouldNotFartInLieuOfBeep.rawValue, defaultValue: true)
static var shouldNotFartInLieuOfBeep: Bool