Skip to content

Commit

Permalink
Merge #277: Do not use QClipboard::Selection on Windows and macOS.
Browse files Browse the repository at this point in the history
7f3a598 qt: Do not use QClipboard::Selection on Windows and macOS. (Hennadii Stepanov)

Pull request description:

  Windows and macOS do [not support](https://doc.qt.io/qt-5/qclipboard.html#notes-for-windows-and-macos-users) the global mouse selection.

  Fixes #258.

ACKs for top commit:
  promag:
    Code review ACK 7f3a598.
  jarolrod:
    ACK 7f3a598

Tree-SHA512: be2beeef7d25af6f4d4a4548325d8d29f08e4342f499666bc4a670ed468a63195d514077c2cd0dba197e12bd43316fd3e2813cdc0954364b6aa4ae6b90c118bf
  • Loading branch information
MarcoFalke committed Apr 17, 2021
2 parents f5e8bcf + 7f3a598 commit 4a1751a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/qt/guiutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -630,8 +630,11 @@ bool SetStartOnSystemStartup(bool fAutoStart) { return false; }

void setClipboard(const QString& str)
{
QApplication::clipboard()->setText(str, QClipboard::Clipboard);
QApplication::clipboard()->setText(str, QClipboard::Selection);
QClipboard* clipboard = QApplication::clipboard();
clipboard->setText(str, QClipboard::Clipboard);
if (clipboard->supportsSelection()) {
clipboard->setText(str, QClipboard::Selection);
}
}

fs::path qstringToBoostPath(const QString &path)
Expand Down

0 comments on commit 4a1751a

Please sign in to comment.