summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2015-01-19 02:18:59 +0100
committerBenjamin Otte <otte@redhat.com>2015-01-19 02:19:59 +0100
commitcbabb2e6ff9276991529a5144e84c6a428eef173 (patch)
tree8adb30445b96e7af0dc51e78af7fec192125cd0a
parent9e1f87068045f5ff2c0191fcc3c5c22ed3f1f30d (diff)
downloadgtk+-cbabb2e6ff9276991529a5144e84c6a428eef173.tar.gz
stylecontext: Fix FALSE/TRUE mixup
Introduced in e649c8773f0357df19f4e28aabf40a203a39c409. It's obviously the root node right there.
-rw-r--r--gtk/gtkstylecontext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index 21a2b5bda4..f107a73c50 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -2948,7 +2948,7 @@ _gtk_style_context_validate (GtkStyleContext *context,
{
GtkCssStyle *style, *static_style;
- static_style = build_properties (context, cssnode->decl, FALSE, gtk_css_node_get_parent_style (context, cssnode));
+ static_style = build_properties (context, cssnode->decl, TRUE, gtk_css_node_get_parent_style (context, cssnode));
style = gtk_css_animated_style_new (static_style,
priv->parent ? style_values_lookup (priv->parent) : NULL,
timestamp,