diff options
Diffstat (limited to 'libmate-desktop/mate-desktop-utils.c')
-rw-r--r-- | libmate-desktop/mate-desktop-utils.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libmate-desktop/mate-desktop-utils.c b/libmate-desktop/mate-desktop-utils.c index a5228b7..6b13e7c 100644 --- a/libmate-desktop/mate-desktop-utils.c +++ b/libmate-desktop/mate-desktop-utils.c @@ -447,7 +447,10 @@ mate_desktop_gtk_style_get_light_color (GtkStyleContext *style, GtkStateFlags state, GdkRGBA *color) { - gtk_style_context_get_background_color (style, state, color); + g_return_if_fail (color != NULL); + g_return_if_fail (GTK_IS_STYLE_CONTEXT (style)); + + gtk_style_context_get (style, state, "background-color", &color, NULL); gtk_style_shade (color, color, LIGHTNESS_MULT); } @@ -456,6 +459,9 @@ mate_desktop_gtk_style_get_dark_color (GtkStyleContext *style, GtkStateFlags state, GdkRGBA *color) { - gtk_style_context_get_background_color (style, state, color); + g_return_if_fail (color != NULL); + g_return_if_fail (GTK_IS_STYLE_CONTEXT (style)); + + gtk_style_context_get (style, state, "background-color", &color, NULL); gtk_style_shade (color, color, DARKNESS_MULT); } |