mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix #6115: qt wallet>information was broken for imported wallets
This commit is contained in:
parent
853f42dbbb
commit
b59c3294b2
1 changed files with 2 additions and 2 deletions
|
@ -2277,6 +2277,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
|
||||||
grid.addWidget(lightning_b, 5, 2)
|
grid.addWidget(lightning_b, 5, 2)
|
||||||
vbox.addLayout(grid)
|
vbox.addLayout(grid)
|
||||||
|
|
||||||
|
labels_clayout = None
|
||||||
|
|
||||||
if self.wallet.is_deterministic():
|
if self.wallet.is_deterministic():
|
||||||
mpk_text = ShowQRTextEdit()
|
mpk_text = ShowQRTextEdit()
|
||||||
mpk_text.setMaximumHeight(150)
|
mpk_text.setMaximumHeight(150)
|
||||||
|
@ -2286,8 +2288,6 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
|
||||||
mpk_text.setText(mpk_list[index])
|
mpk_text.setText(mpk_list[index])
|
||||||
mpk_text.repaint() # macOS hack for #4777
|
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
|
# only show the combobox in case multiple accounts are available
|
||||||
if len(mpk_list) > 1:
|
if len(mpk_list) > 1:
|
||||||
# only show the combobox if multiple master keys are defined
|
# only show the combobox if multiple master keys are defined
|
||||||
|
|
Loading…
Add table
Reference in a new issue