forked from openlp/openlp
Changed with and height arround on the general tab. This brings it in line with the standard way of specifing a screen res, as well as bring it in line with the x & y cords before the height and width!
This commit is contained in:
parent
f9c442d90a
commit
cd9a7d4951
@ -195,6 +195,19 @@ class GeneralTab(SettingsTab):
|
|||||||
self.currentYValueLabel.setObjectName(u'currentYValueLabel')
|
self.currentYValueLabel.setObjectName(u'currentYValueLabel')
|
||||||
self.currentYLayout.addWidget(self.currentYValueLabel)
|
self.currentYLayout.addWidget(self.currentYValueLabel)
|
||||||
self.currentLayout.addLayout(self.currentYLayout)
|
self.currentLayout.addLayout(self.currentYLayout)
|
||||||
|
self.currentWidthLayout = QtGui.QVBoxLayout()
|
||||||
|
self.currentWidthLayout.setSpacing(0)
|
||||||
|
self.currentWidthLayout.setMargin(0)
|
||||||
|
self.currentWidthLayout.setObjectName(u'currentWidthLayout')
|
||||||
|
self.currentWidthLabel = QtGui.QLabel(self.displayGroupBox)
|
||||||
|
self.currentWidthLabel.setAlignment(QtCore.Qt.AlignCenter)
|
||||||
|
self.currentWidthLabel.setObjectName(u'currentWidthLabel')
|
||||||
|
self.currentWidthLayout.addWidget(self.currentWidthLabel)
|
||||||
|
self.currentWidthValueLabel = QtGui.QLabel(self.displayGroupBox)
|
||||||
|
self.currentWidthValueLabel.setAlignment(QtCore.Qt.AlignCenter)
|
||||||
|
self.currentWidthValueLabel.setObjectName(u'currentWidthValueLabel')
|
||||||
|
self.currentWidthLayout.addWidget(self.currentWidthValueLabel)
|
||||||
|
self.currentLayout.addLayout(self.currentWidthLayout)
|
||||||
self.currentHeightLayout = QtGui.QVBoxLayout()
|
self.currentHeightLayout = QtGui.QVBoxLayout()
|
||||||
self.currentHeightLayout.setSpacing(0)
|
self.currentHeightLayout.setSpacing(0)
|
||||||
self.currentHeightLayout.setMargin(0)
|
self.currentHeightLayout.setMargin(0)
|
||||||
@ -209,19 +222,6 @@ class GeneralTab(SettingsTab):
|
|||||||
self.currentHeightValueLabel.setObjectName(u'Height')
|
self.currentHeightValueLabel.setObjectName(u'Height')
|
||||||
self.currentHeightLayout.addWidget(self.currentHeightValueLabel)
|
self.currentHeightLayout.addWidget(self.currentHeightValueLabel)
|
||||||
self.currentLayout.addLayout(self.currentHeightLayout)
|
self.currentLayout.addLayout(self.currentHeightLayout)
|
||||||
self.currentWidthLayout = QtGui.QVBoxLayout()
|
|
||||||
self.currentWidthLayout.setSpacing(0)
|
|
||||||
self.currentWidthLayout.setMargin(0)
|
|
||||||
self.currentWidthLayout.setObjectName(u'currentWidthLayout')
|
|
||||||
self.currentWidthLabel = QtGui.QLabel(self.displayGroupBox)
|
|
||||||
self.currentWidthLabel.setAlignment(QtCore.Qt.AlignCenter)
|
|
||||||
self.currentWidthLabel.setObjectName(u'currentWidthLabel')
|
|
||||||
self.currentWidthLayout.addWidget(self.currentWidthLabel)
|
|
||||||
self.currentWidthValueLabel = QtGui.QLabel(self.displayGroupBox)
|
|
||||||
self.currentWidthValueLabel.setAlignment(QtCore.Qt.AlignCenter)
|
|
||||||
self.currentWidthValueLabel.setObjectName(u'currentWidthValueLabel')
|
|
||||||
self.currentWidthLayout.addWidget(self.currentWidthValueLabel)
|
|
||||||
self.currentLayout.addLayout(self.currentWidthLayout)
|
|
||||||
self.displayLayout.addLayout(self.currentLayout)
|
self.displayLayout.addLayout(self.currentLayout)
|
||||||
self.overrideCheckBox = QtGui.QCheckBox(self.displayGroupBox)
|
self.overrideCheckBox = QtGui.QCheckBox(self.displayGroupBox)
|
||||||
self.overrideCheckBox.setObjectName(u'overrideCheckBox')
|
self.overrideCheckBox.setObjectName(u'overrideCheckBox')
|
||||||
@ -256,18 +256,6 @@ class GeneralTab(SettingsTab):
|
|||||||
self.customYValueEdit.setObjectName(u'customYValueEdit')
|
self.customYValueEdit.setObjectName(u'customYValueEdit')
|
||||||
self.customYLayout.addWidget(self.customYValueEdit)
|
self.customYLayout.addWidget(self.customYValueEdit)
|
||||||
self.customLayout.addLayout(self.customYLayout)
|
self.customLayout.addLayout(self.customYLayout)
|
||||||
self.customHeightLayout = QtGui.QVBoxLayout()
|
|
||||||
self.customHeightLayout.setSpacing(0)
|
|
||||||
self.customHeightLayout.setMargin(0)
|
|
||||||
self.customHeightLayout.setObjectName(u'customHeightLayout')
|
|
||||||
self.customHeightLabel = QtGui.QLabel(self.displayGroupBox)
|
|
||||||
self.customHeightLabel.setAlignment(QtCore.Qt.AlignCenter)
|
|
||||||
self.customHeightLabel.setObjectName(u'customHeightLabel')
|
|
||||||
self.customHeightLayout.addWidget(self.customHeightLabel)
|
|
||||||
self.customHeightValueEdit = QtGui.QLineEdit(self.displayGroupBox)
|
|
||||||
self.customHeightValueEdit.setObjectName(u'customHeightValueEdit')
|
|
||||||
self.customHeightLayout.addWidget(self.customHeightValueEdit)
|
|
||||||
self.customLayout.addLayout(self.customHeightLayout)
|
|
||||||
self.customWidthLayout = QtGui.QVBoxLayout()
|
self.customWidthLayout = QtGui.QVBoxLayout()
|
||||||
self.customWidthLayout.setSpacing(0)
|
self.customWidthLayout.setSpacing(0)
|
||||||
self.customWidthLayout.setMargin(0)
|
self.customWidthLayout.setMargin(0)
|
||||||
@ -281,6 +269,18 @@ class GeneralTab(SettingsTab):
|
|||||||
self.customWidthValueEdit.setObjectName(u'customWidthValueEdit')
|
self.customWidthValueEdit.setObjectName(u'customWidthValueEdit')
|
||||||
self.customWidthLayout.addWidget(self.customWidthValueEdit)
|
self.customWidthLayout.addWidget(self.customWidthValueEdit)
|
||||||
self.customLayout.addLayout(self.customWidthLayout)
|
self.customLayout.addLayout(self.customWidthLayout)
|
||||||
|
self.customHeightLayout = QtGui.QVBoxLayout()
|
||||||
|
self.customHeightLayout.setSpacing(0)
|
||||||
|
self.customHeightLayout.setMargin(0)
|
||||||
|
self.customHeightLayout.setObjectName(u'customHeightLayout')
|
||||||
|
self.customHeightLabel = QtGui.QLabel(self.displayGroupBox)
|
||||||
|
self.customHeightLabel.setAlignment(QtCore.Qt.AlignCenter)
|
||||||
|
self.customHeightLabel.setObjectName(u'customHeightLabel')
|
||||||
|
self.customHeightLayout.addWidget(self.customHeightLabel)
|
||||||
|
self.customHeightValueEdit = QtGui.QLineEdit(self.displayGroupBox)
|
||||||
|
self.customHeightValueEdit.setObjectName(u'customHeightValueEdit')
|
||||||
|
self.customHeightLayout.addWidget(self.customHeightValueEdit)
|
||||||
|
self.customLayout.addLayout(self.customHeightLayout)
|
||||||
self.displayLayout.addLayout(self.customLayout)
|
self.displayLayout.addLayout(self.customLayout)
|
||||||
# Bottom spacer
|
# Bottom spacer
|
||||||
self.generalRightSpacer = QtGui.QSpacerItem(20, 40,
|
self.generalRightSpacer = QtGui.QSpacerItem(20, 40,
|
||||||
|
Loading…
Reference in New Issue
Block a user