summaryrefslogtreecommitdiff
path: root/eel
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2011-01-19 19:44:48 +0100
committerCosimo Cecchi <cosimoc@gnome.org>2011-01-19 19:44:48 +0100
commit2a1fbaf839fc7eaae505e3534acd317e9dd47b1b (patch)
treecae048c9201c7a974a59f71a85b17b4246cc4bbf /eel
parentd0d90599476e4f21d3e07fd670b6c18b6ba06794 (diff)
downloadnautilus-2a1fbaf839fc7eaae505e3534acd317e9dd47b1b.tar.gz
canvas: fix an ACTIVE -> NORMAL typo from GtkStyleContext conversion
Diffstat (limited to 'eel')
-rw-r--r--eel/eel-canvas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eel/eel-canvas.c b/eel/eel-canvas.c
index 4e869d78b..a63badae8 100644
--- a/eel/eel-canvas.c
+++ b/eel/eel-canvas.c
@@ -2971,7 +2971,7 @@ eel_canvas_draw_background (EelCanvas *canvas,
cairo_save (cr);
/* By default, we use the style background. */
style_context = gtk_widget_get_style_context (GTK_WIDGET (canvas));
- gtk_style_context_get_background_color (style_context, GTK_STATE_FLAG_ACTIVE, &color);
+ gtk_style_context_get_background_color (style_context, GTK_STATE_FLAG_NORMAL, &color);
gdk_cairo_set_source_rgba (cr, &color);
gdk_cairo_rectangle (cr, &rect);
cairo_fill (cr);