quickshell/widgets/CachingImage.qml
2025-06-10 15:34:15 +02:00

14 lines
320 B
QML

import "root:/services"
import QtQuick
Image {
id: root
property string path
property bool loadOriginal
readonly property Thumbnailer.Thumbnail thumbnail: Thumbnailer.go(this)
source: thumbnail.path ? `file://${thumbnail.path}` : ""
asynchronous: true
fillMode: Image.PreserveAspectCrop
}