Save to file off by default

This commit is contained in:
Jack 2024-09-16 19:28:13 -04:00
parent e4c9244dce
commit 4a3784d679
3 changed files with 12 additions and 3 deletions

View File

@ -111,13 +111,14 @@ class Ui_TinyblastOptions(object):
self.saveToFileCheckBox = QCheckBox(self.scrollAreaWidgetContents)
self.saveToFileCheckBox.setObjectName(u"saveToFileCheckBox")
self.saveToFileCheckBox.setChecked(True)
self.saveToFileCheckBox.setChecked(False)
self.saveToFileCheckBox.setTristate(False)
self.gridLayout.addWidget(self.saveToFileCheckBox, 9, 1, 1, 1)
self.filePathTextBox = QLineEdit(self.scrollAreaWidgetContents)
self.filePathTextBox.setObjectName(u"filePathTextBox")
self.filePathTextBox.setEnabled(False)
self.gridLayout.addWidget(self.filePathTextBox, 10, 1, 1, 3)
@ -228,6 +229,7 @@ class Ui_TinyblastOptions(object):
self.browseButton = QPushButton(self.scrollAreaWidgetContents)
self.browseButton.setObjectName(u"browseButton")
self.browseButton.setEnabled(False)
self.gridLayout.addWidget(self.browseButton, 11, 1, 1, 2)

View File

@ -147,7 +147,7 @@
<string/>
</property>
<property name="checked">
<bool>true</bool>
<bool>false</bool>
</property>
<property name="tristate">
<bool>false</bool>
@ -155,7 +155,11 @@
</widget>
</item>
<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 row="7" column="2" colspan="2">
<widget class="QSlider" name="framePaddingSlider">
@ -355,6 +359,9 @@
</item>
<item row="11" column="1" colspan="2">
<widget class="QPushButton" name="browseButton">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text">
<string>Browse...</string>
</property>