mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05:00
Also copy the address to the X11 clipboard (the one you middle-click to paste)
This commit is contained in:
parent
a0db772d13
commit
4db114667f
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ void copyEntryData(QAbstractItemView *view, int column, int role)
|
|||
if(!selection.isEmpty())
|
||||
{
|
||||
// Copy first item
|
||||
QApplication::clipboard()->setText(selection.at(0).data(role).toString());
|
||||
QApplication::clipboard()->setText(selection.at(0).data(role).toString(),QClipboard::Selection);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue