1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-15 13:05:23 +02:00

chatview: open files on click

Seems that Qt.openUrlExternally doesn't find symlinks. At least
with MessagesAdapter::openUrl everything seems good

Change-Id: I636822a7f2f7e9ef27f2faedb49987ea2cbba343
This commit is contained in:
Sébastien Blin 2021-10-22 17:00:39 -04:00
parent dd1ea5c2dc
commit 9cc1848897
No known key found for this signature in database
GPG key ID: C894BB01EEB2A9A9

View file

@ -131,7 +131,7 @@ Control {
acceptedButtons: Qt.LeftButton
onClicked: {
if (root.hoveredLink)
Qt.openUrlExternally(root.hoveredLink)
MessagesAdapter.openUrl(root.hoveredLink)
}
}
}