]> spindle.queued.net Git - midori/commitdiff
Use the 16x16 icon for the Win32 icon
authorChristian Dywan <christian@twotoasts.de>
Mon, 20 Jul 2009 05:06:59 +0000 (07:06 +0200)
committerChristian Dywan <christian@twotoasts.de>
Mon, 20 Jul 2009 05:06:59 +0000 (07:06 +0200)
wscript

diff --git a/wscript b/wscript
index b429214b5bd3c08a9fbe4ac4466a8decfeace7be..9abab8d5e3af1fa859c7c0af85f047ac33410483 100644 (file)
--- a/wscript
+++ b/wscript
@@ -346,7 +346,7 @@ def build (bld):
         infile = task.inputs[0].abspath (task.env)
         outfile = task.outputs[0].abspath (task.env)
         command = bld.env['CONVERT'] + ' -background transparent \
-            -geometry 32x32 -extent 32x32 ' + \
+            -geometry 16x16 -extent 16x16 ' + \
             infile + ' ' + outfile
         if Utils.exec_command (command):
             return 1
@@ -358,7 +358,7 @@ def build (bld):
     if bld.env['WINRC']:
         obj = bld.new_task_gen ('copy',
             fun = image_to_win32ico,
-            source = 'icons/scalable/midori.svg',
+            source = 'icons/16x16/midori.png',
             target = 'data/midori.ico',
             before = 'cc')