Skip to content

Commit

Permalink
Update GUI width, add icon.ico
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaos81 committed May 8, 2024
1 parent 77a831c commit 4cd8d10
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Image_Updater/IUGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
class Ui_imageUpdate(object):
def setupUi(self, imageUpdate):
imageUpdate.setObjectName("imageUpdate")
imageUpdate.resize(700, 300)
imageUpdate.resize(800, 300)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(imageUpdate.sizePolicy().hasHeightForWidth())
imageUpdate.setSizePolicy(sizePolicy)
imageUpdate.setMinimumSize(QtCore.QSize(700, 300))
imageUpdate.setMaximumSize(QtCore.QSize(700, 300))
imageUpdate.setMinimumSize(QtCore.QSize(800, 300))
imageUpdate.setMaximumSize(QtCore.QSize(800, 300))
imageUpdate.setAutoFillBackground(False)
self.centralwidget = QtWidgets.QWidget(imageUpdate)
self.centralwidget.setObjectName("centralwidget")
Expand Down Expand Up @@ -114,7 +114,7 @@ def setupUi(self, imageUpdate):
self.verticalLayout_2.addLayout(self.extractLayout)
imageUpdate.setCentralWidget(self.centralwidget)
self.menubar = QtWidgets.QMenuBar(imageUpdate)
self.menubar.setGeometry(QtCore.QRect(0, 0, 700, 24))
self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 24))
self.menubar.setObjectName("menubar")
self.menuFile = QtWidgets.QMenu(self.menubar)
self.menuFile.setObjectName("menuFile")
Expand Down
8 changes: 4 additions & 4 deletions Image_Updater/IUGui.ui
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>700</width>
<width>800</width>
<height>300</height>
</rect>
</property>
Expand All @@ -18,13 +18,13 @@
</property>
<property name="minimumSize">
<size>
<width>700</width>
<width>800</width>
<height>300</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>700</width>
<width>800</width>
<height>300</height>
</size>
</property>
Expand Down Expand Up @@ -274,7 +274,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>700</width>
<width>800</width>
<height>24</height>
</rect>
</property>
Expand Down
Binary file added Image_Updater/icon.ico
Binary file not shown.

0 comments on commit 4cd8d10

Please sign in to comment.