Add nice icon
This commit is contained in:
parent
21b6108345
commit
88756b517b
8
pyfpdb/HUD_main.pyw
Executable file → Normal file
8
pyfpdb/HUD_main.pyw
Executable file → Normal file
|
@ -111,8 +111,16 @@ class HUD_main(object):
|
||||||
self.vb.add(self.label)
|
self.vb.add(self.label)
|
||||||
self.main_window.add(self.vb)
|
self.main_window.add(self.vb)
|
||||||
self.main_window.set_title(_("HUD Main Window"))
|
self.main_window.set_title(_("HUD Main Window"))
|
||||||
|
cards = os.path.join(os.getcwd(), '..','gfx','fpdb-cards.png')
|
||||||
|
if os.path.exists(cards):
|
||||||
|
self.main_window.set_icon_from_file(cards)
|
||||||
|
elif os.path.exists('/usr/share/pixmaps/fpdb-cards.png'):
|
||||||
|
self.main_window.set_icon_from_file('/usr/share/pixmaps/fpdb-cards.png')
|
||||||
|
else:
|
||||||
|
self.main_window.set_icon_stock(gtk.STOCK_HOME)
|
||||||
self.main_window.show_all()
|
self.main_window.show_all()
|
||||||
gobject.timeout_add(100, self.check_tables)
|
gobject.timeout_add(100, self.check_tables)
|
||||||
|
|
||||||
except:
|
except:
|
||||||
log.error("*** Exception in HUD_main.init() *** ")
|
log.error("*** Exception in HUD_main.init() *** ")
|
||||||
for e in traceback.format_tb(sys.exc_info()[2]):
|
for e in traceback.format_tb(sys.exc_info()[2]):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user