Fix up the resource generation for icons

The script was looking in the wrong subdirectories.
This commit is contained in:
Matthias Clasen 2018-07-27 09:02:18 -04:00
parent cb247276f5
commit d398c00d20

View File

@ -62,7 +62,7 @@ for f in get_files('ui', '.ui'):
xml += '\n'
for s in ['16x16', '24x24', '32x32', '48x48']:
for c in ['actions', 'status']:
for c in ['categories']:
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'):