From e11bcdc9cd6a4ce3d7c0d651f810d21f3153bec8 Mon Sep 17 00:00:00 2001 From: Lewis Jackson <> Date: Fri, 2 Jun 2023 00:19:37 +0300 Subject: [PATCH] Slight visual tweaks to weather display --- src/WatchFacePages/Weather.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WatchFacePages/Weather.cpp b/src/WatchFacePages/Weather.cpp index 8845c7a..b023be4 100644 --- a/src/WatchFacePages/Weather.cpp +++ b/src/WatchFacePages/Weather.cpp @@ -68,9 +68,9 @@ void WatchFacePages::Weather::DrawPage(bool partialRefresh) // Temperature and weather icon // Separator - m_display.fillRect(10, 118, DISPLAY_WIDTH - 20, 2, GxEPD_BLACK); + m_display.fillRect(10, 116, DISPLAY_WIDTH - 20, 2, GxEPD_BLACK); - m_display.drawBitmap(0, 120, Icons::Weather::day_clear, 75, 75, GxEPD_BLACK); + m_display.drawBitmap(5, 125, Icons::Weather::day_clear, 75, 75, GxEPD_BLACK); m_display.setFont(&FreeSans12pt7b); std::string temperature = "-20.5 C";