1
0

text gui: dialogs

This commit is contained in:
thomasv
2012-10-30 18:36:09 +01:00
parent 05c09ac9ac
commit 43ceb6b52a
3 changed files with 107 additions and 21 deletions

View File

@@ -1298,7 +1298,7 @@ class ElectrumWindow(QMainWindow):
gui_label=QLabel(_('Default GUI') + ':')
grid.addWidget(gui_label , 7, 0)
gui_combo = QComboBox()
gui_combo.addItems(['Lite', 'Classic', 'Gtk'])
gui_combo.addItems(['Lite', 'Classic', 'Gtk', 'Text'])
index = gui_combo.findText(self.config.get("gui","classic").capitalize())
if index==-1: index = 1
gui_combo.setCurrentIndex(index)