Rearrange checkboxes
This commit is contained in:
		| @@ -62,13 +62,6 @@ | ||||
|               </property> | ||||
|              </widget> | ||||
|             </item> | ||||
|             <item> | ||||
|              <widget class="QCheckBox" name="coverShadows"> | ||||
|               <property name="text"> | ||||
|                <string>Cover shadows</string> | ||||
|               </property> | ||||
|              </widget> | ||||
|             </item> | ||||
|             <item> | ||||
|              <widget class="QCheckBox" name="autoTags"> | ||||
|               <property name="text"> | ||||
| @@ -83,17 +76,11 @@ | ||||
|         <item row="1" column="0"> | ||||
|          <layout class="QHBoxLayout" name="horizontalLayout"> | ||||
|           <item> | ||||
|            <spacer name="horizontalSpacer"> | ||||
|             <property name="orientation"> | ||||
|              <enum>Qt::Horizontal</enum> | ||||
|            <widget class="QCheckBox" name="coverShadows"> | ||||
|             <property name="text"> | ||||
|              <string>Cover shadows</string> | ||||
|             </property> | ||||
|             <property name="sizeHint" stdset="0"> | ||||
|              <size> | ||||
|               <width>40</width> | ||||
|               <height>20</height> | ||||
|              </size> | ||||
|             </property> | ||||
|            </spacer> | ||||
|            </widget> | ||||
|           </item> | ||||
|           <item> | ||||
|            <widget class="QCheckBox" name="performCulling"> | ||||
| @@ -103,17 +90,11 @@ | ||||
|            </widget> | ||||
|           </item> | ||||
|           <item> | ||||
|            <spacer name="horizontalSpacer_2"> | ||||
|             <property name="orientation"> | ||||
|              <enum>Qt::Horizontal</enum> | ||||
|            <widget class="QCheckBox" name="checkBox"> | ||||
|             <property name="text"> | ||||
|              <string>OCPD</string> | ||||
|             </property> | ||||
|             <property name="sizeHint" stdset="0"> | ||||
|              <size> | ||||
|               <width>40</width> | ||||
|               <height>20</height> | ||||
|              </size> | ||||
|             </property> | ||||
|            </spacer> | ||||
|            </widget> | ||||
|           </item> | ||||
|          </layout> | ||||
|         </item> | ||||
|   | ||||
| @@ -43,9 +43,6 @@ class Ui_Dialog(object): | ||||
|         self.fileRemember = QtWidgets.QCheckBox(self.groupBox) | ||||
|         self.fileRemember.setObjectName("fileRemember") | ||||
|         self.horizontalLayout_4.addWidget(self.fileRemember) | ||||
|         self.coverShadows = QtWidgets.QCheckBox(self.groupBox) | ||||
|         self.coverShadows.setObjectName("coverShadows") | ||||
|         self.horizontalLayout_4.addWidget(self.coverShadows) | ||||
|         self.autoTags = QtWidgets.QCheckBox(self.groupBox) | ||||
|         self.autoTags.setObjectName("autoTags") | ||||
|         self.horizontalLayout_4.addWidget(self.autoTags) | ||||
| @@ -53,13 +50,15 @@ class Ui_Dialog(object): | ||||
|         self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1) | ||||
|         self.horizontalLayout = QtWidgets.QHBoxLayout() | ||||
|         self.horizontalLayout.setObjectName("horizontalLayout") | ||||
|         spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) | ||||
|         self.horizontalLayout.addItem(spacerItem) | ||||
|         self.coverShadows = QtWidgets.QCheckBox(self.groupBox) | ||||
|         self.coverShadows.setObjectName("coverShadows") | ||||
|         self.horizontalLayout.addWidget(self.coverShadows) | ||||
|         self.performCulling = QtWidgets.QCheckBox(self.groupBox) | ||||
|         self.performCulling.setObjectName("performCulling") | ||||
|         self.horizontalLayout.addWidget(self.performCulling) | ||||
|         spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) | ||||
|         self.horizontalLayout.addItem(spacerItem1) | ||||
|         self.checkBox = QtWidgets.QCheckBox(self.groupBox) | ||||
|         self.checkBox.setObjectName("checkBox") | ||||
|         self.horizontalLayout.addWidget(self.checkBox) | ||||
|         self.gridLayout.addLayout(self.horizontalLayout, 1, 0, 1, 1) | ||||
|         self.verticalLayout_2.addWidget(self.groupBox) | ||||
|         self.gridLayout_3.addLayout(self.verticalLayout_2, 0, 0, 1, 1) | ||||
| @@ -86,9 +85,10 @@ class Ui_Dialog(object): | ||||
|         self.groupBox.setTitle(_translate("Dialog", "Switches")) | ||||
|         self.refreshLibrary.setText(_translate("Dialog", "Startup: Refresh library")) | ||||
|         self.fileRemember.setText(_translate("Dialog", "Remember open files")) | ||||
|         self.coverShadows.setText(_translate("Dialog", "Cover shadows")) | ||||
|         self.autoTags.setText(_translate("Dialog", "Generate tags from files")) | ||||
|         self.coverShadows.setText(_translate("Dialog", "Cover shadows")) | ||||
|         self.performCulling.setText(_translate("Dialog", "Load covers only when needed")) | ||||
|         self.checkBox.setText(_translate("Dialog", "OCPD")) | ||||
|         self.okButton.setText(_translate("Dialog", "OK")) | ||||
|         self.cancelButton.setText(_translate("Dialog", "Cancel")) | ||||
|         self.aboutButton.setText(_translate("Dialog", "About")) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user