mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 09:45:18 +00:00
kivy: fix #6262
This commit is contained in:
parent
a97cb88a1a
commit
b764d0f0bf
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class QRDialog(Factory.Popup):
|
||||||
self.app = App.get_running_app()
|
self.app = App.get_running_app()
|
||||||
self.title = title
|
self.title = title
|
||||||
self.data = data
|
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.failure_cb = failure_cb
|
||||||
self.text_for_clipboard = text_for_clipboard if text_for_clipboard else data
|
self.text_for_clipboard = text_for_clipboard if text_for_clipboard else data
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue