Merge pull request #1708 from NepNep21/windows-image-copying
Fix image copying on windows
This commit is contained in:
commit
9f2f1c62de
@ -2034,7 +2034,11 @@ TimelineModel::copyMedia(const QString &eventId) const
|
|||||||
clipContents->setImageData(img);
|
clipContents->setImageData(img);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Qt uses COM for clipboard management on windows and our HTTP threads do not
|
||||||
|
// initialize it, so run in the event loop
|
||||||
|
QTimer::singleShot(0, ChatPage::instance(), [clipContents] {
|
||||||
QGuiApplication::clipboard()->setMimeData(clipContents);
|
QGuiApplication::clipboard()->setMimeData(clipContents);
|
||||||
|
});
|
||||||
|
|
||||||
return;
|
return;
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user