nosignal-shell/components/images/CachingImage.qml
2026-04-27 22:07:57 +10:00

14 lines
256 B
QML

import QtQuick
import Caelestia.Images
Image {
id: root
property string path
asynchronous: true
fillMode: Image.PreserveAspectCrop
source: IUtils.urlForPath(path, fillMode)
sourceSize.width: width
sourceSize.height: height
}