diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-04-12 12:49:40 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-04-12 12:49:40 -0400 |
commit | 0e58ec7dcd2d25ccc51d7b430a904d15249c8066 (patch) | |
tree | 30484f7a4d121df7b69111cbed3948202a8da92d /gtk/gtktoolitemgroup.c | |
parent | 93203ca2f6508064e3d866f73c669509f17de688 (diff) | |
download | gtk+-0e58ec7dcd2d25ccc51d7b430a904d15249c8066.tar.gz |
GtkToolItemGroupPrivate: Improve struct packing
Diffstat (limited to 'gtk/gtktoolitemgroup.c')
-rw-r--r-- | gtk/gtktoolitemgroup.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtktoolitemgroup.c b/gtk/gtktoolitemgroup.c index 70833e6aff..554bf8d92b 100644 --- a/gtk/gtktoolitemgroup.c +++ b/gtk/gtktoolitemgroup.c @@ -81,12 +81,10 @@ struct _GtkToolItemGroupPrivate GList *children; - gboolean animation; gint64 animation_start; GSource *animation_timeout; gint expander_size; gint header_spacing; - PangoEllipsizeMode ellipsize; gulong focus_set_id; GtkWidget *toplevel; @@ -94,6 +92,9 @@ struct _GtkToolItemGroupPrivate GtkSettings *settings; gulong settings_connection; + PangoEllipsizeMode ellipsize; + + guint animation : 1; guint collapsed : 1; }; |