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);