SomberNight
4 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/gui/qt/settings_dialog.py
|
@ -345,7 +345,7 @@ class SettingsDialog(WindowModalDialog): |
|
|
msg = _('Choose which online block explorer to use for functions that open a web browser') |
|
|
msg = _('Choose which online block explorer to use for functions that open a web browser') |
|
|
block_ex_label = HelpLabel(_('Online Block Explorer') + ':', msg) |
|
|
block_ex_label = HelpLabel(_('Online Block Explorer') + ':', msg) |
|
|
block_ex_combo = QComboBox() |
|
|
block_ex_combo = QComboBox() |
|
|
block_ex_custom_e = QLineEdit(self.config.get('block_explorer_custom') or '') |
|
|
block_ex_custom_e = QLineEdit(str(self.config.get('block_explorer_custom') or '')) |
|
|
block_ex_combo.addItems(block_explorers) |
|
|
block_ex_combo.addItems(block_explorers) |
|
|
block_ex_combo.setCurrentIndex( |
|
|
block_ex_combo.setCurrentIndex( |
|
|
block_ex_combo.findText(util.block_explorer(self.config) or BLOCK_EX_CUSTOM_ITEM)) |
|
|
block_ex_combo.findText(util.block_explorer(self.config) or BLOCK_EX_CUSTOM_ITEM)) |
|
|