Merge branch 'master' into dismiss_frames

This commit is contained in:
Jason P 2025-07-20 14:39:31 -05:00 committed by GitHub
commit 5a65b40e2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -365,6 +365,9 @@ void drawAnalogClockFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16
// hour hand radius and y coordinate
int16_t hourHandRadius = radius * 0.35;
if (isHighResolution) {
hourHandRadius = radius * 0.55;
}
int16_t hourHandNoonY = centerY - hourHandRadius;
display->setColor(OLEDDISPLAY_COLOR::WHITE);