From 816ae120a24fb3aa016d96e77106602e97894acb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Thu, 28 Nov 2024 18:37:48 +0100 Subject: [PATCH] Fix positionsing to fit 3 digits --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index dddd535..ed4777c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -208,8 +208,8 @@ void displayProblems() { display.setCursor(scrollPos, 48); display.print(problemDescriptions); display.setTextSize(1); - display.fillRect(117,35,10,10,0); - display.setCursor(118,36); + display.fillRect(112,35,10,10,0); + display.setCursor(113,36); display.print(totalProblems); display.display(); }