remove 'rotating' animation (it was ugly imo)

This commit is contained in:
darksignal7
2025-10-06 23:07:55 +03:00
parent 4b6b27a8fd
commit cf303380b6
@@ -20,7 +20,7 @@ Item {
height: parent.height
rotation: {
if (!Config.options.time.secondPrecision) return 0;
return (secondHandLoader.item.rotation + 45) + (opacity * 360); // +45 degrees to align text's center // (opacity * 360) for open/close anim
return (secondHandLoader.item.rotation + 45); // +45 degrees to align text's center
}
opacity: root.style === "rotating" ? 1.0 : 0