Skip to content

Commit 1be4bba

Browse files
committed
Merge pull request #2350 from DavidGriffith/master
Also copy the address to the X11 clipboard (the one you middle-click to paste)
2 parents 8142ac2 + 4db1146 commit 1be4bba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/guiutil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ void copyEntryData(QAbstractItemView *view, int column, int role)
161161
if(!selection.isEmpty())
162162
{
163163
// Copy first item
164-
QApplication::clipboard()->setText(selection.at(0).data(role).toString());
164+
QApplication::clipboard()->setText(selection.at(0).data(role).toString(),QClipboard::Selection);
165165
}
166166
}
167167

0 commit comments

Comments
 (0)