From 9b05304c2d58b8fc5f5e75c6a2ac2ec4523d4565 Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Fri, 2 Oct 2009 21:36:46 +0200 Subject: [PATCH] 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 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/panel.js b/js/ui/panel.js index 58803b30a..5108bfdd9 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;