From 6e6f0a34ec4bb03f62626b11adbf78ddf4b9e273 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 29 Sep 2013 18:20:56 +0300 Subject: Have the correct name in gui. --- mesongui.py | 3 +-- 1 file changed, 1 insertion(+), 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): -- cgit v1.1