From 1c79f18b13335642be29b8fb7408e05f6920526e Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Fri, 7 Sep 2012 09:35:04 +0200 Subject: [PATCH] stage: Change background color to grey The stage's background color can visible on screencasts when multiple monitors with different resolutions are in use. Change it to from blue to grey to look better as requested by the designers. https://bugzilla.gnome.org/show_bug.cgi?id=683514 --- js/ui/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/main.js b/js/ui/main.js index ff11cc5e2..0fbd7310c 100644 --- a/js/ui/main.js +++ b/js/ui/main.js @@ -38,7 +38,7 @@ const XdndHandler = imports.ui.xdndHandler; const Util = imports.misc.util; const OVERRIDES_SCHEMA = 'org.gnome.shell.overrides'; -const DEFAULT_BACKGROUND_COLOR = Clutter.Color.from_pixel(0x2266bbff); +const DEFAULT_BACKGROUND_COLOR = Clutter.Color.from_pixel(0x2e3436ff); let componentManager = null; let panel = null;