Refresh all amount edits when units change.

Improved version of prior commit.
This commit is contained in:
Neil Booth 2015-11-09 20:06:36 +09:00
parent 386319b015
commit 7b40b63a3d
2 changed files with 5 additions and 3 deletions

View File

@ -95,7 +95,7 @@ class BTCAmountEdit(AmountEdit):
def setAmount(self, amount):
if amount is None:
self.setText("")
self.setText(" ") # Space forces repaint in case units changed
else:
self.setText(format_satoshis_plain(amount, self.decimal_point()))

View File

@ -2686,6 +2686,8 @@ class ElectrumWindow(QMainWindow, PrintError):
unit_result = units[unit_combo.currentIndex()]
if self.base_unit() == unit_result:
return
edits = self.amount_e, self.fee_e, self.receive_amount_e, fee_e
amounts = [edit.get_amount() for edit in edits]
if unit_result == 'BTC':
self.decimal_point = 8
elif unit_result == 'mBTC':
@ -2698,8 +2700,8 @@ class ElectrumWindow(QMainWindow, PrintError):
self.history_list.update()
self.receive_list.update()
self.address_list.update()
self.do_clear()
fee_e.setAmount(self.wallet.fee_per_kb(self.config))
for edit, amount in zip(edits, amounts):
edit.setAmount(amount)
self.update_status()
unit_combo.currentIndexChanged.connect(on_unit)
gui_widgets.append((unit_label, unit_combo))