diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-06-22 11:01:43 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-06-22 11:52:11 -0400 |
commit | acb276c644f2cf7c6a025ce1fa8243194d6143dc (patch) | |
tree | b5ce0d3e345e5ffd2f44e5ec32af758baef17909 /gtk/gtkicontheme.c | |
parent | f2b98f45db21bed27c70e9f40fca1f79466a9e4b (diff) | |
download | gtk+-acb276c644f2cf7c6a025ce1fa8243194d6143dc.tar.gz |
GtkIconInfo: Small struct packing improvement
This makes the GtkIconInfo struct a bit smaller.
Diffstat (limited to 'gtk/gtkicontheme.c')
-rw-r--r-- | gtk/gtkicontheme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index 1ea892e234..da5a8272f1 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -244,7 +244,6 @@ struct _GtkIconInfo gint dir_scale; gint min_size; gint max_size; - gdouble unscaled_scale; /* Parameters influencing the scaled icon */ @@ -261,6 +260,7 @@ struct _GtkIconInfo GdkPixbuf *pixbuf; GdkPixbuf *proxy_pixbuf; GError *load_error; + gdouble unscaled_scale; gdouble scale; SymbolicPixbufCache *symbolic_pixbuf_cache; |