1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Extensions/NSTextField+FocusRingType.swift

9 lines
139 B
Swift
Raw Normal View History

2021-11-28 20:07:55 +05:30
import AppKit
extension NSTextField {
override open var focusRingType: NSFocusRingType {
get { .none }
2022-04-02 18:04:06 +05:30
set {}
2021-11-28 20:07:55 +05:30
}
}