electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit b764d0f0bf7130bdd98fad6734470aff8dca07bd
parent a97cb88a1ab023967186ee9ade01d2c6f1b47d52
Author: SomberNight <somber.night@protonmail.com>
Date:   Fri, 26 Jun 2020 03:25:36 +0200

kivy: fix #6262

Diffstat:
Melectrum/gui/kivy/uix/dialogs/qr_dialog.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/gui/kivy/uix/dialogs/qr_dialog.py b/electrum/gui/kivy/uix/dialogs/qr_dialog.py @@ -61,7 +61,7 @@ class QRDialog(Factory.Popup): self.app = App.get_running_app() self.title = title self.data = data - self.help_text = data if show_text else help_text + self.help_text = (data if show_text else help_text) or '' self.failure_cb = failure_cb self.text_for_clipboard = text_for_clipboard if text_for_clipboard else data