1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-12 21:30:32 +05:30
yattee/Extensions/NSTextField+FocusRingType.swift
2022-04-02 14:34:06 +02:00

9 lines
139 B
Swift

import AppKit
extension NSTextField {
override open var focusRingType: NSFocusRingType {
get { .none }
set {}
}
}