diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-03-29 01:45:59 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-03-29 01:45:59 -0700 |
commit | 1be4bbadc74d9fa8f987f91df973733c6fef7a56 (patch) | |
tree | 9b72b0df3ceba0df2616cd0e7bf3ffb3409dc10e /src | |
parent | 8142ac2c18eda6550058c930151908682ebec350 (diff) | |
parent | 4db114667fe540fe6edf90e1db7f5c999b857e4d (diff) |
Merge pull request #2350 from DavidGriffith/master
Also copy the address to the X11 clipboard (the one you middle-click to paste)
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/guiutil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 30ad8ef66b..06ccde3782 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -161,7 +161,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); } } |