Extratcing the example project now works

This commit is contained in:
Veronica K. B. Olsen
2020-08-09 19:57:45 +02:00
parent b5b657650a
commit 3c1e2727ad
4 changed files with 94 additions and 22 deletions
+3 -3
View File
@@ -248,20 +248,20 @@ class ProjWizardPopulatePage(QWizardPage):
vS = self.mainConf.pxInt(12)
fS = self.mainConf.pxInt(4)
self.popSample = QRadioButton("Fill the project with sample files")
self.popMinimal = QRadioButton("Fill the project with a minimal set of items")
self.popCustom = QRadioButton("Show detailed options for filling the project")
self.popSample = QRadioButton("Fill the project with example files")
self.popMinimal.setChecked(True)
self.popBox = QVBoxLayout()
self.popBox.setSpacing(fS)
self.popBox.addWidget(self.popMinimal)
self.popBox.addWidget(self.popSample)
self.popBox.addWidget(self.popCustom)
self.popBox.addWidget(self.popSample)
self.registerField("popSample", self.popSample)
self.registerField("popMinimal", self.popMinimal)
self.registerField("popCustom", self.popCustom)
self.registerField("popSample", self.popSample)
# Assemble
self.outerBox = QVBoxLayout()