Add missing 64 size because doesn't create icon_32x32@2x.png
This commit is contained in:
parent
d83e3fddb0
commit
eb93cd4048
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ def render(output, sz=256):
|
|||
shutil.rmtree(iconset)
|
||||
os.mkdir(iconset)
|
||||
os.chdir(iconset)
|
||||
for sz in (16, 32, 128, 256, 512, 1024):
|
||||
for sz in (16, 32, 64, 128, 256, 512, 1024):
|
||||
iname = 'icon_{0}x{0}.png'.format(sz)
|
||||
iname2x = 'icon_{0}x{0}@2x.png'.format(sz // 2)
|
||||
render(iname, sz)
|
||||
|
|
|
|||
Loading…
Reference in a new issue