From 47f507da76efac14b24a00656217ff2ad6192530 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sun, 10 Aug 2025 12:51:47 -0400 Subject: [PATCH] remove animation --- Modules/TopBar/Battery.qml | 18 ------------------ Modules/TopBar/PrivacyIndicator.qml | 15 --------------- 2 files changed, 33 deletions(-) diff --git a/Modules/TopBar/Battery.qml b/Modules/TopBar/Battery.qml index 9fa6518f..c452135e 100644 --- a/Modules/TopBar/Battery.qml +++ b/Modules/TopBar/Battery.qml @@ -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 { diff --git a/Modules/TopBar/PrivacyIndicator.qml b/Modules/TopBar/PrivacyIndicator.qml index fee70708..f395a18d 100644 --- a/Modules/TopBar/PrivacyIndicator.qml +++ b/Modules/TopBar/PrivacyIndicator.qml @@ -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 - } - } } }