From ee49d14b55d5c342272aea344d7b3b77ad076cfd Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 30 Aug 2014 17:33:02 +0200 Subject: [PATCH] fix #777 --- gui/qt/main_window.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 31e0afa9..9df9325b 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2591,6 +2591,9 @@ class ElectrumWindow(QMainWindow): raise Exception('Unknown base unit') self.config.set_key('decimal_point', self.decimal_point, True) self.update_history_tab() + self.update_receive_tab() + self.update_address_tab() + self.update_invoices_tab() self.update_status() unit_combo.currentIndexChanged.connect(on_unit) widgets.append((unit_label, unit_combo, unit_help))