diff options
Diffstat (limited to 'mesongui.py')
-rwxr-xr-x | mesongui.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesongui.py b/mesongui.py index 1f71709..655ad6e 100755 --- a/mesongui.py +++ b/mesongui.py @@ -238,7 +238,8 @@ class OptionForm: combo = QComboBox() combo.addItem('plain') combo.addItem('debug') - combo.addItem('optimized') + combo.addItem('debugoptimized') + combo.addItem('release') combo.setCurrentText(self.coredata.buildtype) combo.currentTextChanged.connect(self.build_type_changed) self.form.addRow('Build type', combo) |