[vlc-commits] macosx: Remove custom HUDOutlineView selection color

Marvin Scholz git at videolan.org
Fri Sep 29 13:18:11 CEST 2017


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Thu Sep 28 21:27:55 2017 +0200| [b40e9aa20f5a117ff21e46e9f455fa46423c156e] | committer: Marvin Scholz

macosx: Remove custom HUDOutlineView selection color

This is not working fine anymore and causing visual glitches.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b40e9aa20f5a117ff21e46e9f455fa46423c156e
---

 modules/gui/macosx/VLCHUDOutlineView.m | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/modules/gui/macosx/VLCHUDOutlineView.m b/modules/gui/macosx/VLCHUDOutlineView.m
index 6298d5ce8b..6c9f07db68 100644
--- a/modules/gui/macosx/VLCHUDOutlineView.m
+++ b/modules/gui/macosx/VLCHUDOutlineView.m
@@ -50,7 +50,6 @@
 
     if (self) {
         _tableBackgroundColor = [NSColor colorWithCalibratedRed:0 green:0 blue:0 alpha:0];
-        _cellHighlightColor = [NSColor colorWithDeviceRed:0.549f green:0.561f blue:0.588f alpha:1];
         _cellEditingFillColor = [NSColor colorWithDeviceRed:0.141f green:0.141f blue:0.141f alpha:0.5f];
         _cellAlternatingRowColors = @[[NSColor colorWithCalibratedWhite:0.16f alpha:0.86f],
                                       [NSColor colorWithCalibratedWhite:0.15f alpha:0.8f]];
@@ -74,10 +73,6 @@
     return _cellAlternatingRowColors;
 }
 
-- (id)_highlightColorForCell:(id)cell {
-    return _cellHighlightColor;
-}
-
 - (void)_sendDelegateWillDisplayCell:(id)cell forColumn:(id)column row:(NSInteger)row {
 
     [super _sendDelegateWillDisplayCell:cell forColumn:column row:row];



More information about the vlc-commits mailing list