Files
I-DeskPet/Modules/PetMarch.qml
T
2025-10-14 16:05:58 +02:00

23 lines
462 B
QML

import QtQuick
Rectangle {
anchors.fill: parent
color: "transparent"
AnimatedImage {
anchors.fill: parent
source: "../Gifs/evernight.gif"
fillMode: Image.PreserveAspectFit
}
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.MiddleButton
onClicked: (mouse) => {
if (mouse.button === Qt.MiddleButton) {
toggleHelper.toggleLayer()
}
}
}
}