From f3f5da0cd25adb82639b19294ec75ca2bd72c65a Mon Sep 17 00:00:00 2001 From: Ephraim Amiel Yusi <52617123+eaydev@users.noreply.github.com> Date: Wed, 27 May 2020 15:21:03 +1000 Subject: [PATCH] Update app.js --- apps/verticalface/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/verticalface/app.js b/apps/verticalface/app.js index cdbb753c7..2cd0db6bd 100644 --- a/apps/verticalface/app.js +++ b/apps/verticalface/app.js @@ -19,13 +19,13 @@ function draw() { // draw the current time (4x size 7 segment) g.setFont("7x11Numeric7Seg",6); g.setFontAlign(-1,0); // align right bottom - g.drawString(hours, 55, 85, true /*clear background*/); - g.drawString(mins, 55, 150, true /*clear background*/); + g.drawString(hours, 55, 80, true /*clear background*/); + g.drawString(mins, 55, 155, true /*clear background*/); // draw the date (2x size 7 segment) g.setFont("6x8",2); g.setFontAlign(-1,0); // align right bottom - g.drawString(date, 145, 110, true /*clear background*/); + g.drawString(date, 145, 100, true /*clear background*/); } // Clear the screen once, at startup