Save to file off by default
This commit is contained in:
parent
e4c9244dce
commit
4a3784d679
Binary file not shown.
|
@ -111,13 +111,14 @@ class Ui_TinyblastOptions(object):
|
||||||
|
|
||||||
self.saveToFileCheckBox = QCheckBox(self.scrollAreaWidgetContents)
|
self.saveToFileCheckBox = QCheckBox(self.scrollAreaWidgetContents)
|
||||||
self.saveToFileCheckBox.setObjectName(u"saveToFileCheckBox")
|
self.saveToFileCheckBox.setObjectName(u"saveToFileCheckBox")
|
||||||
self.saveToFileCheckBox.setChecked(True)
|
self.saveToFileCheckBox.setChecked(False)
|
||||||
self.saveToFileCheckBox.setTristate(False)
|
self.saveToFileCheckBox.setTristate(False)
|
||||||
|
|
||||||
self.gridLayout.addWidget(self.saveToFileCheckBox, 9, 1, 1, 1)
|
self.gridLayout.addWidget(self.saveToFileCheckBox, 9, 1, 1, 1)
|
||||||
|
|
||||||
self.filePathTextBox = QLineEdit(self.scrollAreaWidgetContents)
|
self.filePathTextBox = QLineEdit(self.scrollAreaWidgetContents)
|
||||||
self.filePathTextBox.setObjectName(u"filePathTextBox")
|
self.filePathTextBox.setObjectName(u"filePathTextBox")
|
||||||
|
self.filePathTextBox.setEnabled(False)
|
||||||
|
|
||||||
self.gridLayout.addWidget(self.filePathTextBox, 10, 1, 1, 3)
|
self.gridLayout.addWidget(self.filePathTextBox, 10, 1, 1, 3)
|
||||||
|
|
||||||
|
@ -228,6 +229,7 @@ class Ui_TinyblastOptions(object):
|
||||||
|
|
||||||
self.browseButton = QPushButton(self.scrollAreaWidgetContents)
|
self.browseButton = QPushButton(self.scrollAreaWidgetContents)
|
||||||
self.browseButton.setObjectName(u"browseButton")
|
self.browseButton.setObjectName(u"browseButton")
|
||||||
|
self.browseButton.setEnabled(False)
|
||||||
|
|
||||||
self.gridLayout.addWidget(self.browseButton, 11, 1, 1, 2)
|
self.gridLayout.addWidget(self.browseButton, 11, 1, 1, 2)
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
<property name="checked">
|
<property name="checked">
|
||||||
<bool>true</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="tristate">
|
<property name="tristate">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
|
@ -155,7 +155,11 @@
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="10" column="1" colspan="3">
|
<item row="10" column="1" colspan="3">
|
||||||
<widget class="QLineEdit" name="filePathTextBox"/>
|
<widget class="QLineEdit" name="filePathTextBox">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="7" column="2" colspan="2">
|
<item row="7" column="2" colspan="2">
|
||||||
<widget class="QSlider" name="framePaddingSlider">
|
<widget class="QSlider" name="framePaddingSlider">
|
||||||
|
@ -355,6 +359,9 @@
|
||||||
</item>
|
</item>
|
||||||
<item row="11" column="1" colspan="2">
|
<item row="11" column="1" colspan="2">
|
||||||
<widget class="QPushButton" name="browseButton">
|
<widget class="QPushButton" name="browseButton">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Browse...</string>
|
<string>Browse...</string>
|
||||||
</property>
|
</property>
|
||||||
|
|
Loading…
Reference in New Issue