diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-03-15 21:48:05 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-03-15 21:48:05 (GMT) |
commit | 35faa9f75ceeb39df5618a7854ed70a6212c3eb5 (patch) | |
tree | af7593295f51c5dc13bc20046834b986599b24b2 /Swift/QtUI | |
parent | 10619b03988d94136c1dc6cb9a0963130d42f48e (diff) | |
download | swift-35faa9f75ceeb39df5618a7854ed70a6212c3eb5.zip swift-35faa9f75ceeb39df5618a7854ed70a6212c3eb5.tar.bz2 |
Added 22x22 and 24x24 icon on Linux.
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/SConscript | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index 80b329c..53dfbc1 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -225,8 +225,7 @@ if env.get("SWIFT_INSTALLDIR", "") : icons_path = os.path.join(env["SWIFT_INSTALLDIR"], "share", "icons", "hicolor") env.InstallAs(os.path.join(icons_path, "32x32", "apps", "swift.xpm"), "../resources/logo/logo-icon-32.xpm") env.InstallAs(os.path.join(icons_path, "scalable", "apps", "swift.svg"), "../resources/logo/logo-icon.svg") - # TODO: 22, 24 - for i in ["16", "64", "128"] : + for i in ["16", "22", "24", "64", "128"] : env.InstallAs(os.path.join(icons_path, i + "x" + i, "apps", "swift.png"), "../resources/logo/logo-icon-" + i + ".png") env.Install(os.path.join(env["SWIFT_INSTALLDIR"], "share", "applications"), "../resources/swift.desktop") for dir, resource in commonResources.items() : |