divide instead of multiply animation speed

This commit is contained in:
Kainoa Kanter 2025-09-08 09:22:21 -07:00
parent 6c93b1b768
commit 1c0c4e955a
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -57,10 +57,10 @@ Singleton {
property real opacityFull: 1.0 property real opacityFull: 1.0
// Animation duration (ms) // Animation duration (ms)
property int animationFast: Math.round(150 * 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 animationNormal: Math.round(300 / Settings.data.general.animationSpeed)
property int animationSlow: Math.round(450 * 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 animationSlowest: Math.round(750 / Settings.data.general.animationSpeed)
// Dimensions // Dimensions
property int barHeight: 36 property int barHeight: 36