rename waveAnimation to constantlyRotate, disable by default

This commit is contained in:
end-4
2025-10-05 20:19:36 +02:00
parent 96ed90e2cc
commit 9d39417142
4 changed files with 9 additions and 10 deletions
@@ -296,13 +296,13 @@ ContentPage {
enabled: Config.options.background.clock.style === "cookie"
visible: Config.options.background.clock.style === "cookie"
buttonIcon: "waves"
text: Translation.tr("Wave animation")
checked: Config.options.background.clock.cookie.waveAnimation
text: Translation.tr("Constantly rotate")
checked: Config.options.background.clock.cookie.constantlyRotate
onCheckedChanged: {
Config.options.background.clock.cookie.waveAnimation = checked;
Config.options.background.clock.cookie.constantlyRotate = checked;
}
StyledToolTip {
text: "It may effect performance"
text: "Makes the clock always rotate. This is extremely expensive (expect 50% usage on Intel UHD Graphics) and thus impractical."
}
}