Browse Source
Merge pull request #7218 from verretor/2021-04-qrcodes
Avoid hiding QR codes with help_text
patch-4
ThomasV
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
electrum/gui/qt/qrcodewidget.py
|
@ -118,6 +118,7 @@ class QRDialog(WindowModalDialog): |
|
|
|
|
|
|
|
|
help_text = data if show_text else help_text |
|
|
help_text = data if show_text else help_text |
|
|
if help_text: |
|
|
if help_text: |
|
|
|
|
|
qr_hbox.setContentsMargins(0, 0, 0, 44) |
|
|
text_label = WWLabel() |
|
|
text_label = WWLabel() |
|
|
text_label.setText(help_text) |
|
|
text_label.setText(help_text) |
|
|
vbox.addWidget(text_label) |
|
|
vbox.addWidget(text_label) |
|
|