Browse Source

add address to InvoiceDialog for OnchainInvoice type

patch-4
Sander van Grieken 3 years ago
parent
commit
1d5a273629
  1. 13
      electrum/gui/qml/components/InvoiceDialog.qml

13
electrum/gui/qml/components/InvoiceDialog.qml

@ -90,6 +90,19 @@ Dialog {
} }
} }
Label {
visible: invoice.invoiceType == Invoice.OnchainInvoice
text: qsTr('Address')
}
Label {
visible: invoice.invoiceType == Invoice.OnchainInvoice
Layout.fillWidth: true
text: invoice.address
font.family: FixedFont
wrapMode: Text.Wrap
}
Label { Label {
text: qsTr('Status') text: qsTr('Status')
} }

Loading…
Cancel
Save