mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
Merge bitcoin-core/gui#277: Do not use QClipboard::Selection on Windows and macOS.
7f3a5980c1d54988a707b961fd2ef647cebb4c5b 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 7f3a5980c1d54988a707b961fd2ef647cebb4c5b. jarolrod: ACK 7f3a5980c1d54988a707b961fd2ef647cebb4c5b Tree-SHA512: be2beeef7d25af6f4d4a4548325d8d29f08e4342f499666bc4a670ed468a63195d514077c2cd0dba197e12bd43316fd3e2813cdc0954364b6aa4ae6b90c118bf
This commit is contained in:
parent
fb542454df
commit
1b130dec1c
@ -1726,8 +1726,11 @@ void updateButtonGroupShortcuts(QButtonGroup* buttonGroup)
|
|||||||
|
|
||||||
void setClipboard(const QString& str)
|
void setClipboard(const QString& str)
|
||||||
{
|
{
|
||||||
QApplication::clipboard()->setText(str, QClipboard::Clipboard);
|
QClipboard* clipboard = QApplication::clipboard();
|
||||||
QApplication::clipboard()->setText(str, QClipboard::Selection);
|
clipboard->setText(str, QClipboard::Clipboard);
|
||||||
|
if (clipboard->supportsSelection()) {
|
||||||
|
clipboard->setText(str, QClipboard::Selection);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fs::path qstringToBoostPath(const QString &path)
|
fs::path qstringToBoostPath(const QString &path)
|
||||||
|
Loading…
Reference in New Issue
Block a user