Add icon back to Lite GUI. Fixes #112

This commit is contained in:
Maran 2013-06-17 23:21:37 +02:00
parent 8020fd9c33
commit 4570db0804
2 changed files with 2 additions and 1 deletions

View file

@ -438,7 +438,7 @@ class MiniWindow(QDialog):
show_history.setChecked(show_hist)
self.show_history(show_hist)
self.setWindowIcon(QIcon(":electrum.png"))
self.setWindowIcon(QIcon(":icons/electrum.png"))
self.setWindowTitle("Electrum")
self.setWindowFlags(Qt.Window|Qt.MSWindowsFixedSizeDialogHint)
self.layout().setSizeConstraint(QLayout.SetFixedSize)

View file

@ -31,6 +31,7 @@ if sys.platform == 'darwin':
includes = ['PyQt4.QtCore','PyQt4.QtGui', 'sip'],
packages = ['lib', 'gui', 'plugins'],
iconfile='electrum.icns',
plist=dict(CFBundleIconFile='electrum.icns'),
resources=["data", "icons"])),
)
elif sys.platform == 'win32':