Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc3, 0.4rc4, and 0.4

about: Make logo transparent

The old 92x50 png was taken from the homepage, and has a white
background.

The new png has transparency, which gives a nicer look for the
application logo in the about dialog. In addition to this, the
about dialog now has a separate 32x32 icon, which looks nicer
than a down-scaled version of the 92x50 image.

Changeset 340028f30d8f

Parent 4b30a3efa4b9

by Peer Sommerlund

Changes to 3 files · Browse files at 340028f30d8f Showing diff from parent 4b30a3efa4b9 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​about.py Stacked
 
61
62
63
64
65
 
 
 
66
67
68
69
70
71
 
 
72
73
74
 
61
62
63
 
 
64
65
66
67
68
69
70
 
 
71
72
73
74
75
@@ -61,14 +61,15 @@
  self.set_wrap_license(True)   self.set_copyright("Copyright 2008 TK Soh and others")   - hg_icon = os.path.normpath(shlib.get_tortoise_icon('thg_logo_92x50.png')) - prog_root = os.path.dirname(os.path.dirname(os.path.dirname(hg_icon))) + thg_logo = os.path.normpath(shlib.get_tortoise_icon('thg_logo_92x50.png')) + thg_icon = os.path.normpath(shlib.get_tortoise_icon('thg_logo.ico')) + prog_root = os.path.dirname(os.path.dirname(os.path.dirname(thg_icon)))   license_file = os.path.join(prog_root, "COPYING.txt")     self.set_license(file(license_file).read())   self.set_comments("with " + lib_versions + "\n\n" + comment) - self.set_logo(gtk.gdk.pixbuf_new_from_file(hg_icon)) - self.set_icon_from_file(hg_icon) + self.set_logo(gtk.gdk.pixbuf_new_from_file(thg_logo)) + self.set_icon_from_file(thg_icon)     # somehow clicking on the Close button doesn't automatically   # close the About dialog...
Added image
Removed image
Added image
Subtracted image Added image