Skip to content

Commit

Permalink
Added label to the net masternodes filter box
Browse files Browse the repository at this point in the history
  • Loading branch information
Bertrand256 committed Jun 15, 2023
1 parent 955a5dd commit 41ef6e9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions src/ui/ui_app_main_view_wdg.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,14 +228,13 @@ def setupUi(self, WdgAppMainView):
self.verticalLayout_10.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_10.setSpacing(6)
self.verticalLayout_10.setObjectName("verticalLayout_10")
self.frameNetMnsTop = QtWidgets.QFrame(self.wdgAllMnsList)
self.frameNetMnsTop.setFrameShape(QtWidgets.QFrame.StyledPanel)
self.frameNetMnsTop.setFrameShadow(QtWidgets.QFrame.Raised)
self.frameNetMnsTop = QtWidgets.QGroupBox(self.wdgAllMnsList)
self.frameNetMnsTop.setObjectName("frameNetMnsTop")
self.gridLayout_2 = QtWidgets.QGridLayout(self.frameNetMnsTop)
self.gridLayout_2.setSizeConstraint(QtWidgets.QLayout.SetDefaultConstraint)
self.gridLayout_2.setContentsMargins(4, 4, 4, 4)
self.gridLayout_2.setSpacing(4)
self.gridLayout_2.setHorizontalSpacing(4)
self.gridLayout_2.setVerticalSpacing(2)
self.gridLayout_2.setObjectName("gridLayout_2")
self.label = QtWidgets.QLabel(self.frameNetMnsTop)
self.label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
Expand Down Expand Up @@ -396,6 +395,7 @@ def retranslateUi(self, WdgAppMainView):
self.btnNetMnsApplyFilter.setText(_translate("WdgAppMainView", "Apply"))
self.btnNetMnsClearFilter.setToolTip(_translate("WdgAppMainView", "Clear all filter conditions"))
self.btnNetMnsClearFilter.setText(_translate("WdgAppMainView", "Clear"))
self.frameNetMnsTop.setTitle(_translate("WdgAppMainView", "Filter"))
self.label.setText(_translate("WdgAppMainView", "IP/port:"))
self.label_5.setText(_translate("WdgAppMainView", "Collateral address:"))
self.label_3.setText(_translate("WdgAppMainView", "Type:"))
Expand Down
14 changes: 7 additions & 7 deletions src/ui/ui_app_main_view_wdg.ui
Original file line number Diff line number Diff line change
Expand Up @@ -609,12 +609,9 @@
<number>0</number>
</property>
<item>
<widget class="QFrame" name="frameNetMnsTop">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
<widget class="QGroupBox" name="frameNetMnsTop">
<property name="title">
<string>Filter</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<property name="sizeConstraint">
Expand All @@ -632,9 +629,12 @@
<property name="bottomMargin">
<number>4</number>
</property>
<property name="spacing">
<property name="horizontalSpacing">
<number>4</number>
</property>
<property name="verticalSpacing">
<number>2</number>
</property>
<item row="3" column="0">
<widget class="QLabel" name="label">
<property name="text">
Expand Down

0 comments on commit 41ef6e9

Please sign in to comment.