Added icon. Fix #2
This commit is contained in:
parent
6fe13463fa
commit
4e258543c2
@ -37,4 +37,4 @@ exe = EXE(pyz,
|
||||
disable_windowed_traceback=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None )
|
||||
entitlements_file=None , icon='icon.png')
|
||||
|
@ -24,6 +24,9 @@ class Ui_MainWindow(object):
|
||||
if not MainWindow.objectName():
|
||||
MainWindow.setObjectName(u"MainWindow")
|
||||
MainWindow.resize(449, 230)
|
||||
icon = QIcon()
|
||||
icon.addFile(u"icon.png", QSize(), QIcon.Normal, QIcon.Off)
|
||||
MainWindow.setWindowIcon(icon)
|
||||
self.centralwidget = QWidget(MainWindow)
|
||||
self.centralwidget.setObjectName(u"centralwidget")
|
||||
self.centralwidget.setEnabled(True)
|
||||
|
@ -13,6 +13,10 @@
|
||||
<property name="windowTitle">
|
||||
<string>GMD - Giants Maps Downloader</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset>
|
||||
<normaloff>icon.png</normaloff>icon.png</iconset>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralwidget">
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
|
Loading…
Reference in New Issue
Block a user