mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Fix image copying on windows
This commit is contained in:
parent
df88eccfb7
commit
3f05df19a1
1 changed files with 4 additions and 1 deletions
|
@ -2034,7 +2034,10 @@ TimelineModel::copyMedia(const QString &eventId) const
|
||||||
clipContents->setImageData(img);
|
clipContents->setImageData(img);
|
||||||
}
|
}
|
||||||
|
|
||||||
QGuiApplication::clipboard()->setMimeData(clipContents);
|
// 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);
|
||||||
|
});
|
||||||
|
|
||||||
return;
|
return;
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
|
|
Loading…
Reference in a new issue