Details
-
Task
-
Resolution: Fixed
-
Not Evaluated
-
None
-
None
-
None
-
Demo sprint 2025 Week 6-7
Description
The current dial rotation logic allows values to go negative, which then immediately jumps to 360 when corrected using modulo. This creates an unintended snapping effect when the user rotates counterclockwise past 0. The fix ensures that:
- The dial remains at 0 when moved below zero, preventing a sudden jump.
- The rotation range remains between 0-360 in a smooth manner.
- If the user was near 360 and slightly moves negative, it should stay at 360 instead of snapping back.