From 1c0c4e955ae87a3150089f4bf0dafb25b9546fc4 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter Date: Mon, 8 Sep 2025 09:22:21 -0700 Subject: [PATCH] divide instead of multiply animation speed --- Commons/Style.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Commons/Style.qml b/Commons/Style.qml index a3a7d0f..61f243c 100644 --- a/Commons/Style.qml +++ b/Commons/Style.qml @@ -57,10 +57,10 @@ Singleton { property real opacityFull: 1.0 // Animation duration (ms) - property int animationFast: Math.round(150 * Settings.data.general.animationSpeed) - property int animationNormal: Math.round(300 * Settings.data.general.animationSpeed) - property int animationSlow: Math.round(450 * Settings.data.general.animationSpeed) - property int animationSlowest: Math.round(750 * Settings.data.general.animationSpeed) + property int animationFast: Math.round(150 / Settings.data.general.animationSpeed) + property int animationNormal: Math.round(300 / Settings.data.general.animationSpeed) + property int animationSlow: Math.round(450 / Settings.data.general.animationSpeed) + property int animationSlowest: Math.round(750 / Settings.data.general.animationSpeed) // Dimensions property int barHeight: 36