diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-02-12 12:40:17 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-02-12 19:34:19 -0500 |
commit | 6c4e0886202e2a5790a771306f844168d4687440 (patch) | |
tree | 392e3aa3fec1c14a73f0f766a72b58aa415cc4ed /gtk/gen-gtk-gresources-xml.py | |
parent | 4df2a4c82c5a674522aeb83b5380032500f9b173 (diff) | |
download | gtk+-6c4e0886202e2a5790a771306f844168d4687440.tar.gz |
resources: Include more icon directories
We are going to include all the icons that are
used by gtk itself. Prepare for that by including
the necessary subdirectories from the icon theme.
Diffstat (limited to 'gtk/gen-gtk-gresources-xml.py')
-rw-r--r-- | gtk/gen-gtk-gresources-xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gen-gtk-gresources-xml.py b/gtk/gen-gtk-gresources-xml.py index 13c60bdeb7..96a52b3e1f 100644 --- a/gtk/gen-gtk-gresources-xml.py +++ b/gtk/gen-gtk-gresources-xml.py @@ -62,7 +62,7 @@ for f in get_files('ui', '.ui'): xml += '\n' for s in ['16x16', '24x24', '32x32', '48x48', 'scalable']: - for c in ['categories', 'status']: + for c in ['actions', 'categories', 'emblems', 'emotes', 'devices', 'mimetypes', 'places', 'status']: icons_dir = 'icons/{0}/{1}'.format(s,c) if os.path.exists(os.path.join(srcdir,icons_dir)): for f in get_files(icons_dir, '.png'): |