Merge pull request #2350 from DavidGriffith/master
Also copy the address to the X11 clipboard (the one you middle-click to paste)
This commit is contained in:
commit
1be4bbadc7
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ void copyEntryData(QAbstractItemView *view, int column, int role)
|
||||||
if(!selection.isEmpty())
|
if(!selection.isEmpty())
|
||||||
{
|
{
|
||||||
// Copy first item
|
// Copy first item
|
||||||
QApplication::clipboard()->setText(selection.at(0).data(role).toString());
|
QApplication::clipboard()->setText(selection.at(0).data(role).toString(),QClipboard::Selection);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue