minor py3 fix: language setting in qt/preferences

This commit is contained in:
SomberNight 2018-04-23 20:06:54 +02:00
parent d7750c73e6
commit 9fb927a068
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -2606,9 +2606,11 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
lang_combo = QComboBox()
from electrum.i18n import languages
lang_combo.addItems(list(languages.values()))
lang_keys = list(languages.keys())
lang_cur_setting = self.config.get("language", '')
try:
index = languages.keys().index(self.config.get("language",''))
except Exception:
index = lang_keys.index(lang_cur_setting)
except ValueError: # not in list
index = 0
lang_combo.setCurrentIndex(index)
if not self.config.is_modifiable('language'):