lux-shell/components/composite/WallpaperItem.qml
2025-09-22 21:29:36 -04:00

14 lines
253 B
QML

import QtQuick
Image {
asynchronous: true
fillMode: Image.PreserveAspectCrop
sourceSize.width: parent.width
sourceSize.height: parent.height
Behavior on scale {
NumberAnimation {
duration: 200
}
}
}