From e34fbac279161486395a3519704b2bfe397c9802 Mon Sep 17 00:00:00 2001 From: sqfmi Date: Wed, 1 Dec 2021 22:09:11 -0500 Subject: [PATCH] fixed wednesday --- examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp b/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp index f009756..dbbfe83 100644 --- a/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp +++ b/examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp @@ -52,6 +52,9 @@ void Watchy7SEG::drawDate(){ String dayOfWeek = dayStr(currentTime.Wday); display.getTextBounds(dayOfWeek, 5, 85, &x1, &y1, &w, &h); + if(currentTime.Wday == 4){ + w = w - 5; + } display.setCursor(85 - w, 85); display.println(dayOfWeek);