diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-03-29 01:45:59 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-03-29 01:45:59 -0700 |
| commit | 1be4bbadc74d9fa8f987f91df973733c6fef7a56 (patch) | |
| tree | 9b72b0df3ceba0df2616cd0e7bf3ffb3409dc10e /src/qt/guiutil.cpp | |
| parent | Merge pull request #2393 from r000n/staging (diff) | |
| parent | Also copy the address to the X11 clipboard (the one you middle-click to paste) (diff) | |
| download | discoin-1be4bbadc74d9fa8f987f91df973733c6fef7a56.tar.xz discoin-1be4bbadc74d9fa8f987f91df973733c6fef7a56.zip | |
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/qt/guiutil.cpp')
| -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 30ad8ef66..06ccde378 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); } } |