mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 13:50:32 +05:30
9 lines
185 B
Swift
9 lines
185 B
Swift
|
import AppKit
|
||
|
|
||
|
extension NSTextField {
|
||
|
override open var focusRingType: NSFocusRingType {
|
||
|
get { .none }
|
||
|
set {} // swiftlint:disable:this unused_setter_value
|
||
|
}
|
||
|
}
|