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