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

hggtk: fix trackback when icon path cannot be located

applies to binaries built with py2exe

Changeset 6cd9b6767421

Parent 7946187e1b6b

by TK Soh

Changes to one file · Browse files at 6cd9b6767421 Showing diff from parent 7946187e1b6b Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​__init__.py Stacked
 
4
5
6
7
 
 
 
 
4
5
6
 
7
8
9
@@ -4,4 +4,6 @@
   # Default icon for apps which do not set one  from shlib import get_tortoise_icon -gtk.window_set_default_icon_from_file(get_tortoise_icon("hg.ico")) +icon = get_tortoise_icon("hg.ico") +if icon: + gtk.window_set_default_icon_from_file(icon)