Make white as default selection highlight color for NSTableView (#312)

This commit is contained in:
Sergii Stoian 2024-11-02 01:03:20 +02:00 committed by GitHub
parent 820492495a
commit 42a79060b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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];