From 4ee553c17c88138bfecece2a3c2f95d3022e44c8 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Mon, 25 Mar 2019 16:12:42 -0700 Subject: [PATCH] Edit text for payment response --- src/requestdialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/requestdialog.cpp b/src/requestdialog.cpp index e0fd53d..65ab73b 100644 --- a/src/requestdialog.cpp +++ b/src/requestdialog.cpp @@ -77,6 +77,8 @@ void RequestDialog::showPaymentConfirmation(MainWindow* main, QString paymentURI req.buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Pay")); + req.label_6->setText(tr("You are paying a payment request. Your address will not be visible to the person requesting this payment.")); + if (d.exec() == QDialog::Accepted) { main->payZcashURI(paymentURI, req.cmbMyAddress->currentText()); }