Skip to content

Commit

Permalink
fix - Fixed hours hand
Browse files Browse the repository at this point in the history
---

We've fixed hours hand pointing to the wrong position.

---

Type: fix
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Jun 8, 2024
1 parent b0808eb commit 65b968a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ double ToRad(int degrees) =>
lastCenter = radius;

// Draw the hands (hours and minutes)
int hoursPos = 12 - TimeDateTools.KernelDateTime.Hour % 12;
int hoursPos = TimeDateTools.KernelDateTime.Hour % 12;
int minutesPos = TimeDateTools.KernelDateTime.Minute;
int hoursRadius = (int)(bezelRadius / 3d);
int minutesRadius = (int)(bezelRadius * 2 / 3d);
Expand Down

0 comments on commit 65b968a

Please sign in to comment.