nosignal-shell/widgets/CachingImage.qml
2025-05-05 22:15:31 +10:00

15 lines
341 B
QML

import "root:/services"
import Quickshell.Io
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
}