File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Sources/CodeEditSourceEditor/Find/PanelView Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ struct FindMethodPicker: NSViewRepresentable {
39
39
40
40
private func createIconLabel( ) -> NSImageView {
41
41
let imageView = NSImageView ( )
42
- let symbolName = method == . contains
42
+ let symbolName = method == . contains
43
43
? " line.horizontal.3.decrease.circle "
44
44
: " line.horizontal.3.decrease.circle.fill "
45
45
imageView. image = NSImage ( systemSymbolName: symbolName, accessibilityDescription: nil ) ?
@@ -180,12 +180,12 @@ struct FindMethodPicker: NSViewRepresentable {
180
180
// Update icon and chevron colors
181
181
if condensed {
182
182
if let iconLabel = container. subviews [ 1 ] as? NSImageView {
183
- let symbolName = method == . contains
183
+ let symbolName = method == . contains
184
184
? " line.horizontal.3.decrease.circle "
185
185
: " line.horizontal.3.decrease.circle.fill "
186
186
iconLabel. image = NSImage ( systemSymbolName: symbolName, accessibilityDescription: nil ) ?
187
187
. withSymbolConfiguration ( . init( pointSize: 14 , weight: . regular) )
188
- iconLabel. contentTintColor = method == . contains
188
+ iconLabel. contentTintColor = method == . contains
189
189
? ( activeState == . inactive ? . tertiaryLabelColor : . labelColor)
190
190
: ( activeState == . inactive ? . tertiaryLabelColor : . controlAccentColor)
191
191
}
You can’t perform that action at this time.
0 commit comments