1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 21:45:38 -05:00

remove animation

This commit is contained in:
bbedward
2025-08-10 12:51:47 -04:00
parent 7f44293f8d
commit 47f507da76
2 changed files with 0 additions and 33 deletions

View File

@@ -48,24 +48,6 @@ Rectangle {
}
anchors.verticalCenter: parent.verticalCenter
SequentialAnimation on opacity {
running: BatteryService.isCharging
loops: Animation.Infinite
NumberAnimation {
to: 0.6
duration: Anims.durLong
easing.type: Easing.BezierSpline
easing.bezierCurve: Anims.standard
}
NumberAnimation {
to: 1
duration: Anims.durLong
easing.type: Easing.BezierSpline
easing.bezierCurve: Anims.standard
}
}
}
StyledText {

View File

@@ -85,21 +85,6 @@ Rectangle {
anchors.rightMargin: -2
anchors.topMargin: -1
SequentialAnimation on opacity {
id: pulseAnimation
running: parent.visible && hasActivePrivacy
&& PrivacyService.cameraActive
loops: Animation.Infinite
NumberAnimation {
to: 0.3
duration: Theme.longDuration
}
NumberAnimation {
to: 1.0
duration: Theme.longDuration
}
}
}
}