Skip to content

Commit

Permalink
Make white as default selection highlight color for NSTableView (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
trunkmaster authored Nov 1, 2024
1 parent 8204924 commit 42a7906
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/GSThemeDrawing.m
Original file line number Diff line number Diff line change
Expand Up @@ -3319,9 +3319,9 @@ - (void) highlightTableViewSelectionInClipRect: (NSRect)clipRect

if (selectionColor == nil)
{
selectionColor = [NSColor colorWithCalibratedRed: 0.86
green: 0.92
blue: 0.99
selectionColor = [NSColor colorWithCalibratedRed: 1.0
green: 1.0
blue: 1.0
alpha: 1.0];
}
[selectionColor set];
Expand Down

0 comments on commit 42a7906

Please sign in to comment.