From 9d4dd20b239c975e99aef4254160732c5031997b Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 29 Dec 2017 20:40:24 +0100 Subject: [PATCH] fix kivy refresh bug with Addresses tab --- gui/kivy/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py index f2a9601b..ad385153 100644 --- a/gui/kivy/main_window.py +++ b/gui/kivy/main_window.py @@ -325,7 +325,7 @@ class ElectrumWindow(App): @profiler def update_tabs(self): - for tab in ['invoices', 'send', 'history', 'receive', 'requests']: + for tab in ['invoices', 'send', 'history', 'receive', 'address']: self.update_tab(tab) def switch_to(self, name):