diff options
Diffstat (limited to 'libmate-desktop/mate-bg-crossfade.c')
-rw-r--r-- | libmate-desktop/mate-bg-crossfade.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libmate-desktop/mate-bg-crossfade.c b/libmate-desktop/mate-bg-crossfade.c index 3242004..716c782 100644 --- a/libmate-desktop/mate-bg-crossfade.c +++ b/libmate-desktop/mate-bg-crossfade.c @@ -277,9 +277,19 @@ tile_surface (cairo_surface_t *surface, } else { +#if GTK_CHECK_VERSION(3, 0, 0) + GtkStyleContext *style_context; + style_context = gtk_style_context_new(); + GdkRGBA color; + gtk_style_context_get(style_context, GTK_STATE_FLAG_NORMAL, + GTK_STYLE_PROPERTY_BACKGROUND_COLOR, &color, + NULL); + gdk_cairo_set_source_rgba(cr, &color); +#else GtkStyle *style; style = gtk_widget_get_default_style (); gdk_cairo_set_source_color(cr, &style->bg[GTK_STATE_NORMAL]); +#endif } cairo_paint (cr); |