Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed resizing on activation #2576

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading