Browse Source

Also copy the address to the X11 clipboard (the one you middle-click to paste)

0.8
David Griffith 11 years ago
parent
commit
4db114667f
  1. 2
      src/qt/guiutil.cpp

2
src/qt/guiutil.cpp

@ -159,7 +159,7 @@ void copyEntryData(QAbstractItemView *view, int column, int role) @@ -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…
Cancel
Save