From 24676288a759ec4c0e3aeca0705357044c77f07c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 5 Mar 2016 09:26:58 +0100 Subject: [PATCH] kivy: force address refresh in load_wallet --- gui/kivy/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py index 0cf5e56e..193bfa7e 100644 --- a/gui/kivy/main_window.py +++ b/gui/kivy/main_window.py @@ -496,6 +496,8 @@ class ElectrumWindow(App): self.update_wallet() # Once GUI has been initialized check if we want to announce something # since the callback has been called before the GUI was initialized + if self.receive_screen: + self.receive_screen.screen.address = '' self.update_tabs() self.notify_transactions() run_hook('load_wallet', wallet, self)