qt fx settings: restore selected exchange in combobox if list changes
This commit is contained in:
@@ -662,7 +662,6 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
|||||||
self.require_fee_update = False
|
self.require_fee_update = False
|
||||||
self.notify_transactions()
|
self.notify_transactions()
|
||||||
|
|
||||||
|
|
||||||
def format_amount(self, x, is_diff=False, whitespaces=False):
|
def format_amount(self, x, is_diff=False, whitespaces=False):
|
||||||
return format_satoshis(x, self.num_zeros, self.decimal_point, is_diff=is_diff, whitespaces=whitespaces)
|
return format_satoshis(x, self.num_zeros, self.decimal_point, is_diff=is_diff, whitespaces=whitespaces)
|
||||||
|
|
||||||
@@ -2936,9 +2935,11 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
|||||||
exchanges = self.fx.get_exchanges_by_ccy(c, h)
|
exchanges = self.fx.get_exchanges_by_ccy(c, h)
|
||||||
else:
|
else:
|
||||||
exchanges = self.fx.get_exchanges_by_ccy('USD', False)
|
exchanges = self.fx.get_exchanges_by_ccy('USD', False)
|
||||||
|
ex_combo.blockSignals(True)
|
||||||
ex_combo.clear()
|
ex_combo.clear()
|
||||||
ex_combo.addItems(sorted(exchanges))
|
ex_combo.addItems(sorted(exchanges))
|
||||||
ex_combo.setCurrentIndex(ex_combo.findText(self.fx.config_exchange()))
|
ex_combo.setCurrentIndex(ex_combo.findText(self.fx.config_exchange()))
|
||||||
|
ex_combo.blockSignals(False)
|
||||||
|
|
||||||
def on_currency(hh):
|
def on_currency(hh):
|
||||||
if not self.fx: return
|
if not self.fx: return
|
||||||
|
|||||||
Reference in New Issue
Block a user