Fix which EventImage url gets opened/copied

This commit is contained in:
miruka
2019-11-16 08:06:56 -04:00
parent fc2fb605e3
commit 25ce08891d
2 changed files with 27 additions and 18 deletions

View File

@@ -7,17 +7,7 @@ HImage {
onWidthChanged: Qt.callLater(update)
onHeightChanged: Qt.callLater(update)
onVisibleChanged: Qt.callLater(update)
onMxcChanged: {
Qt.callLater(update)
if (isMxc) {
py.callCoro("mxc_to_http", [mxc], http => {
image.httpUrl = http || ""
})
} else {
httpUrl = mxc
}
}
onMxcChanged: Qt.callLater(update)
property string mxc
@@ -27,7 +17,6 @@ HImage {
property bool show: false
property string cachedPath: ""
property string httpUrl: ""
readonly property bool isMxc: mxc.startsWith("mxc://")