mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
GUI: Receive: Replace "Copy URI" with "Copy address"
This commit is contained in:
parent
d4d45b6f0a
commit
20479e4ad4
1 changed files with 2 additions and 2 deletions
|
|
@ -44,7 +44,7 @@ ReceiveCoinsDialog::ReceiveCoinsDialog(const PlatformStyle *_platformStyle, QWid
|
|||
}
|
||||
|
||||
// context menu actions
|
||||
QAction *copyURIAction = new QAction(tr("Copy URI"), this);
|
||||
QAction *copyURIAction = new QAction(tr("Copy address"), this);
|
||||
QAction *copyLabelAction = new QAction(tr("Copy label"), this);
|
||||
QAction *copyMessageAction = new QAction(tr("Copy message"), this);
|
||||
QAction *copyAmountAction = new QAction(tr("Copy amount"), this);
|
||||
|
|
@ -272,7 +272,7 @@ void ReceiveCoinsDialog::copyURI()
|
|||
}
|
||||
|
||||
const RecentRequestsTableModel * const submodel = model->getRecentRequestsTableModel();
|
||||
const QString uri = GUIUtil::formatBitcoinURI(submodel->entry(sel.row()).recipient);
|
||||
const QString uri = submodel->entry(sel.row()).recipient.address;
|
||||
GUIUtil::setClipboard(uri);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue