diff options
author | Benjamin Otte <otte@redhat.com> | 2015-05-30 05:43:54 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2015-05-30 05:50:31 +0200 |
commit | 91fac8b5aa44bf045b912d4b3720e84a4a51e70c (patch) | |
tree | c33e134ec6b762f71848ef6bf2d7322f15d7d57c /gtk/gtkcssnodeprivate.h | |
parent | e59e38b58120f8d998b5e204506fc552e2efd00d (diff) | |
download | gtk+-91fac8b5aa44bf045b912d4b3720e84a4a51e70c.tar.gz |
cssnode: Fix position invalidation
The previous code was overly complicated and wrong.
Diffstat (limited to 'gtk/gtkcssnodeprivate.h')
-rw-r--r-- | gtk/gtkcssnodeprivate.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gtk/gtkcssnodeprivate.h b/gtk/gtkcssnodeprivate.h index 95e5cd29a0..293ba0252a 100644 --- a/gtk/gtkcssnodeprivate.h +++ b/gtk/gtkcssnodeprivate.h @@ -50,7 +50,6 @@ struct _GtkCssNode guint visible :1; /* node will be skipped when validating or computing styles */ guint invalid :1; /* node or a child needs to be validated (even if just for animation) */ - guint children_changed :1; /* the children changed since last validation */ guint needs_propagation :1; /* children have state changes that need to be propagated to their siblings */ /* Two invariants hold for this variable: * style_is_invalid == TRUE => next_sibling->style_is_invalid == TRUE |