expansion

This commit is contained in:
2025-10-14 16:05:58 +02:00
parent 1894c01419
commit e7cebf3092
3 changed files with 52 additions and 30 deletions
+22
View File
@@ -0,0 +1,22 @@
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()
}
}
}
}