Skip to content

Commit

Permalink
fixed resizing on activation (#2576)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReimarBauer authored Nov 28, 2024
1 parent 95ab652 commit 0cc6b34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mslib/msui/qt5/ui_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def setupUi(self, MSUIMainWindow):
self.activeOperationDesc.setMaximumSize(QtCore.QSize(300, 16777215))
self.activeOperationDesc.setLineWidth(1)
self.activeOperationDesc.setObjectName("activeOperationDesc")
self.gridLayout_3.addWidget(self.activeOperationDesc, 1, 0, 1, 1)
self.gridLayout_3.addWidget(self.activeOperationDesc, 1, 0, 1, 1, QtCore.Qt.AlignLeft)
self.activeOperationsLabel = QtWidgets.QLabel(self.openOperationsGb)
self.activeOperationsLabel.setObjectName("activeOperationsLabel")
self.gridLayout_3.addWidget(self.activeOperationsLabel, 2, 0, 1, 1)
Expand Down Expand Up @@ -176,7 +176,7 @@ def setupUi(self, MSUIMainWindow):
self.gridLayout.setColumnStretch(0, 1)
MSUIMainWindow.setCentralWidget(self.centralwidget)
self.menubar = QtWidgets.QMenuBar(MSUIMainWindow)
self.menubar.setGeometry(QtCore.QRect(0, 0, 738, 26))
self.menubar.setGeometry(QtCore.QRect(0, 0, 738, 22))
self.menubar.setNativeMenuBar(False)
self.menubar.setObjectName("menubar")
self.menuFile = QtWidgets.QMenu(self.menubar)
Expand Down
4 changes: 2 additions & 2 deletions mslib/msui/ui/ui_mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ Double click a operation to activate and view its description.</string>
</property>
</widget>
</item>
<item row="1" column="0">
<item row="1" column="0" alignment="Qt::AlignLeft">
<widget class="QLabel" name="activeOperationDesc">
<property name="maximumSize">
<size>
Expand Down Expand Up @@ -420,7 +420,7 @@ Double click a operation to activate and view its description.</string>
<x>0</x>
<y>0</y>
<width>738</width>
<height>26</height>
<height>22</height>
</rect>
</property>
<property name="nativeMenuBar">
Expand Down

0 comments on commit 0cc6b34

Please sign in to comment.