tfix #6115: qt wallet>information was broken for imported wallets - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit b59c3294b29c8899480a69b5c79bc37dd034b11e DIR parent 853f42dbbb8a7fb9506e11740c039c5b78b921b2 HTML Author: SomberNight <somber.night@protonmail.com> Date: Sun, 26 Apr 2020 05:29:32 +0200 fix #6115: qt wallet>information was broken for imported wallets Diffstat: M electrum/gui/qt/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py t@@ -2277,6 +2277,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): grid.addWidget(lightning_b, 5, 2) vbox.addLayout(grid) + labels_clayout = None + if self.wallet.is_deterministic(): mpk_text = ShowQRTextEdit() mpk_text.setMaximumHeight(150) t@@ -2286,8 +2288,6 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): mpk_text.setText(mpk_list[index]) mpk_text.repaint() # macOS hack for #4777 - # declare this value such that the hooks can later figure out what to do - labels_clayout = None # only show the combobox in case multiple accounts are available if len(mpk_list) > 1: # only show the combobox if multiple master keys are defined