mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
23 lines
521 B
QML
23 lines
521 B
QML
import QtQuick 2.6
|
|
|
|
import com.github.nheko 1.0
|
|
|
|
Item {
|
|
width: Math.min(parent ? parent.width : undefined, model.width)
|
|
height: width * model.proportionalHeight
|
|
|
|
Image {
|
|
id: img
|
|
anchors.fill: parent
|
|
|
|
source: model.url.replace("mxc://", "image://MxcImage/")
|
|
asynchronous: true
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
MouseArea {
|
|
enabled: model.type == MtxEvent.ImageMessage
|
|
anchors.fill: parent
|
|
onClicked: timelineManager.openImageOverlay(model.url, model.filename, model.mimetype, model.type)
|
|
}
|
|
}
|
|
}
|