diff options
Diffstat (limited to 'shell/e-gray-bar.c')
-rw-r--r-- | shell/e-gray-bar.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/e-gray-bar.c b/shell/e-gray-bar.c index 44d64f16ff..2060af2229 100644 --- a/shell/e-gray-bar.c +++ b/shell/e-gray-bar.c @@ -47,6 +47,11 @@ endarken_style (GtkWidget *widget) rc_style->bg[GTK_STATE_NORMAL].green = 0x8000; rc_style->bg[GTK_STATE_NORMAL].blue = 0x8000; + rc_style->color_flags[GTK_STATE_INSENSITIVE] |= GTK_RC_BG; + rc_style->bg[GTK_STATE_INSENSITIVE].red = 0x8000; + rc_style->bg[GTK_STATE_INSENSITIVE].green = 0x8000; + rc_style->bg[GTK_STATE_INSENSITIVE].blue = 0x8000; + gtk_widget_modify_style (widget, rc_style); gtk_rc_style_unref (rc_style); } |