aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-gray-bar.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-08-12 23:35:48 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-08-12 23:35:48 +0800
commit980969279339b10a0026beb9e41af976c431d9ae (patch)
tree3e73a0a380d710f6bd6a060f3bfa4a902809ec28 /shell/e-gray-bar.c
parent1285912f049822720b8643d2417bfd6b7ad58fc6 (diff)
downloadgsoc2013-evolution-980969279339b10a0026beb9e41af976c431d9ae.tar
gsoc2013-evolution-980969279339b10a0026beb9e41af976c431d9ae.tar.gz
gsoc2013-evolution-980969279339b10a0026beb9e41af976c431d9ae.tar.bz2
gsoc2013-evolution-980969279339b10a0026beb9e41af976c431d9ae.tar.lz
gsoc2013-evolution-980969279339b10a0026beb9e41af976c431d9ae.tar.xz
gsoc2013-evolution-980969279339b10a0026beb9e41af976c431d9ae.tar.zst
gsoc2013-evolution-980969279339b10a0026beb9e41af976c431d9ae.zip
*** empty log message ***
svn path=/trunk/; revision=11933
Diffstat (limited to 'shell/e-gray-bar.c')
-rw-r--r--shell/e-gray-bar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-gray-bar.c b/shell/e-gray-bar.c
index b15c2a0fc6..1058bf5740 100644
--- a/shell/e-gray-bar.c
+++ b/shell/e-gray-bar.c
@@ -50,9 +50,9 @@ endarken_style (GtkWidget *widget)
new_rc_style = gtk_rc_style_new ();
for (i = 0; i < 5; i++) {
- new_rc_style->bg[i].red = 0xffff;
- new_rc_style->bg[i].green = 0x0000;
- new_rc_style->bg[i].blue = 0xffff;
+ new_rc_style->bg[i].red = style->bg[i].red * .8;
+ new_rc_style->bg[i].green = style->bg[i].green * .8;
+ new_rc_style->bg[i].blue = style->bg[i].blue * .8;
new_rc_style->base[i].red = style->base[i].red * .8;
new_rc_style->base[i].green = style->base[i].green * .8;
new_rc_style->base[i].blue = style->base[i].blue * .8;