mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Make white as default selection highlight color for NSTableView (#312)
This commit is contained in:
parent
820492495a
commit
42a79060b9
1 changed files with 3 additions and 3 deletions
|
@ -3319,9 +3319,9 @@ static NSDictionary *titleTextAttributes[3] = {nil, nil, nil};
|
|||
|
||||
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];
|
||||
|
|
Loading…
Reference in a new issue