From d4bba181c209b2d5ddc99bd0f1813c513ce4a1fd Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 1 Sep 2015 01:18:02 +0200 Subject: [PATCH] fix: show tabs in load_wallet --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 93a8d3921..151e6cb02 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -255,6 +255,7 @@ class ElectrumWindow(QMainWindow): self.update_console() self.clear_receive_tab() self.update_receive_tab() + self.tabs.show() self.show() if self.wallet.is_watching_only(): msg = ' '.join([ @@ -409,7 +410,6 @@ class ElectrumWindow(QMainWindow): else: self.wallet.start_threads(self.network) self.load_wallet(self.wallet) - self.show() def update_recently_visited(self, filename=None): recent = self.config.get('recently_open', [])