commit 9d4dd20b239c975e99aef4254160732c5031997b
parent 8a1c290251b1313996c54d79b61896e2e63b3109
Author: SomberNight <somber.night@protonmail.com>
Date: Fri, 29 Dec 2017 20:40:24 +0100
fix kivy refresh bug with Addresses tab
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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):