aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmesongui.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mesongui.py b/mesongui.py
index b4ebc47..d322899 100755
--- a/mesongui.py
+++ b/mesongui.py
@@ -231,7 +231,7 @@ class OptionForm:
combo = QComboBox()
combo.addItem('plain')
combo.addItem('debug')
- combo.addItem('release')
+ combo.addItem('optimized')
combo.setCurrentText(self.coredata.buildtype)
combo.currentTextChanged.connect(self.build_type_changed)
self.form.addRow('Build type', combo)
@@ -243,7 +243,6 @@ class OptionForm:
self.form.addRow('Enable coverage', coverage)
def build_type_changed(self, newtype):
- print(newtype)
self.coredata.buildtype = newtype
def strip_changed(self, newState):