[gnome-shell] Use better fitting color for non ARGB tray icons



commit 9b05304c2d58b8fc5f5e75c6a2ac2ec4523d4565
Author: Adel Gadllah <adel gadllah gmail com>
Date:   Fri Oct 2 21:36:46 2009 +0200

    Use better fitting color for non ARGB tray icons
    
    Currently we use 0xefefefff as a background color for non ARGB tray icons,
    which looks out of place (i.e does not fit the panel's background gradient).
    
    Change it to 0x0b0b0bff to fix that.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=597148

 js/ui/panel.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/panel.js b/js/ui/panel.js
index 58803b3..5108bfd 100644
--- a/js/ui/panel.js
+++ b/js/ui/panel.js
@@ -55,7 +55,7 @@ const TRAY_SPACING_MIN = 8;
 // Used for the tray icon container with gtk pre-2.16, which doesn't
 // fully support tray icon transparency
 const TRAY_BACKGROUND_COLOR = new Clutter.Color();
-TRAY_BACKGROUND_COLOR.from_pixel(0xefefefff);
+TRAY_BACKGROUND_COLOR.from_pixel(0x0b0b0bff);
 const TRAY_BORDER_COLOR = new Clutter.Color();
 TRAY_BORDER_COLOR.from_pixel(0x00000033);
 const TRAY_CORNER_RADIUS = 5;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]