summaryrefslogtreecommitdiff
path: root/libmate-desktop/mate-bg.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmate-desktop/mate-bg.c')
-rw-r--r--libmate-desktop/mate-bg.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libmate-desktop/mate-bg.c b/libmate-desktop/mate-bg.c
index d53510f..cf63d32 100644
--- a/libmate-desktop/mate-bg.c
+++ b/libmate-desktop/mate-bg.c
@@ -1306,12 +1306,13 @@ mate_bg_is_dark (MateBG *bg,
if (pixbuf) {
#if GTK_CHECK_VERSION (3, 0, 0)
GdkRGBA argb;
+ guchar a, r, g, b;
pixbuf_average_value (pixbuf, &argb);
- guchar a = argb.alpha * 0xff;
- guchar r = argb.red * 0xff;
- guchar g = argb.green * 0xff;
- guchar b = argb.blue * 0xff;
+ a = argb.alpha * 0xff;
+ r = argb.red * 0xff;
+ g = argb.green * 0xff;
+ b = argb.blue * 0xff;
#else
guint32 argb = pixbuf_average_value (pixbuf);
guchar a = (argb >> 24) & 0xff;