Sat, 17 Dec 2011 15:42:27 +0100
Changed the main window icon to use a transparent background.
(transplanted from fa0f2cdd245b86860eb117e2b824a7b1c5949a98)
icons/default/eric.png | file | annotate | diff | comparison | revisions | |
icons/default/eric_2.png | file | annotate | diff | comparison | revisions | |
install.py | file | annotate | diff | comparison | revisions | |
pixmaps/aboutEric_2.png | file | annotate | diff | comparison | revisions |
--- a/install.py Sat Dec 17 15:23:08 2011 +0100 +++ b/install.py Sat Dec 17 15:42:27 2011 +0100 @@ -515,14 +515,15 @@ dst = os.path.normpath(os.path.join(distDir, "usr/share/pixmaps")) if not os.path.exists(dst): os.makedirs(dst) - shutil.copy(os.path.join(sourceDir, "icons", "default", "eric.png"), dst) + shutil.copy(os.path.join(sourceDir, "icons", "default", "eric_2.png"), + os.path.join(dst, "eric.png")) dst = os.path.normpath(os.path.join(distDir, "usr/share/applications")) if not os.path.exists(dst): os.makedirs(dst) shutil.copy(os.path.join(sourceDir, "eric5.desktop"), dst) else: - shutil.copy(os.path.join(sourceDir, "icons", "default", "eric.png"), - "/usr/share/pixmaps") + shutil.copy(os.path.join(sourceDir, "icons", "default", "eric_2.png"), + "/usr/share/pixmaps/eric.png") shutil.copy(os.path.join(sourceDir, "eric5.desktop"), "/usr/share/applications")