Browse Source

kivy: InvoiceDialog: make LN invoice QR code scannable

Don't show the text and the QR code together, only the QR code:
the text takes up too much space, which make the QR hard to scan.
patch-4
SomberNight 4 years ago
parent
commit
920e1e94fa
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/kivy/uix/dialogs/invoice_dialog.py

2
electrum/gui/kivy/uix/dialogs/invoice_dialog.py

@ -40,7 +40,9 @@ Builder.load_string('''
text: _('Invoice data')+ ':'
RefLabel:
data: root.data
text: root.data[:40] + "..."
name: _('Data')
show_text_with_qr: False
TopLabel:
text: _('Description') + ':'
RefLabel:

Loading…
Cancel
Save