From 198bb314c78cb2394d11f14026ad9e286c288f35 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Fri, 19 Nov 2010 18:53:34 +0100 Subject: [PATCH] GtkStyleContext: preserve state on save(). --- gtk/gtkstylecontext.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c index 48c2373f39..e880c8294f 100644 --- a/gtk/gtkstylecontext.c +++ b/gtk/gtkstylecontext.c @@ -369,6 +369,7 @@ style_info_copy (const GtkStyleInfo *info) info->regions->len); copy->junction_sides = info->junction_sides; + copy->state_flags = info->state_flags; return copy; }