summaryrefslogtreecommitdiff
path: root/icons/make_png_icons.pl
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-30 19:23:37 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-30 19:23:37 +0200
commitae0a3c36c8772d73ae0fb0510c1eb4aef2fdc98b (patch)
treeaefef26ee358d0fb1f5fff95d191aea321eee68d /icons/make_png_icons.pl
parent4f971a3b5410adcdb149267d64e5ae38c44eaac0 (diff)
icon fixes
Diffstat (limited to 'icons/make_png_icons.pl')
-rwxr-xr-xicons/make_png_icons.pl4
1 files changed, 1 insertions, 3 deletions
diff --git a/icons/make_png_icons.pl b/icons/make_png_icons.pl
index 7b7d419f..4b7637a7 100755
--- a/icons/make_png_icons.pl
+++ b/icons/make_png_icons.pl
@@ -2,9 +2,7 @@
@lst = qw(16 22 24 32 36 48 64 72 96 128 192 256);
foreach $i (@lst) {
- $size = $i-2;
- $size = $size.'x'.$size;
$dir = $i.'x'.$i;
`mkdir $dir`;
- `convert -density 100 -background None scalable/deadbeef.svg -bordercolor None -support 0.1 -resize $size -border 1x1 $dir/deadbeef.png`;
+ `convert -density 100 -background None scalable/deadbeef.svg -support 0.1 -resize $dir $dir/deadbeef.png`;
}