Windows and macOS do not support the global mouse selection.
Fixes #258.
Windows and macOS do not support the global mouse selection.
Fixes #258.
628@@ -629,7 +629,10 @@ bool SetStartOnSystemStartup(bool fAutoStart) { return false; }
629 void setClipboard(const QString& str)
630 {
631 QApplication::clipboard()->setText(str, QClipboard::Clipboard);
632+#if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
QClipboard::supportsSelection()
instead.
Windows and macOS do not support the global mouse selection.
ACK 7f3a5980c1d54988a707b961fd2ef647cebb4c5b
EDIT: This still shows up on > Qt 5.9.8 when running with -debug=qt
. Tested that this PR fixes the issue on macOS 11.2.3
But I cannot replicate the issue described in #258 when compiling master with Qt 5.15.2 or building master with depends which uses Qt 5.12.10
I can replicate the issue when building the 0.21 tag with depends (Qt 5.9.8). I think the issue linked is not a problem anymore going forward
Is this for backport to 0.21?
Yes, I guess.