From 96455052dc6b751406f4e2732056bc8dfe03fa79 Mon Sep 17 00:00:00 2001 From: brentru Date: Tue, 6 Aug 2024 10:45:59 -0400 Subject: [PATCH] add wheresmyfriend --- PyPortal/PyPortal_Wheres_My_Friend/code.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PyPortal/PyPortal_Wheres_My_Friend/code.py b/PyPortal/PyPortal_Wheres_My_Friend/code.py index 68f2ab21a..5f81b78b3 100755 --- a/PyPortal/PyPortal_Wheres_My_Friend/code.py +++ b/PyPortal/PyPortal_Wheres_My_Friend/code.py @@ -28,7 +28,7 @@ display.brightness = BACKLIGHT_BRIGHTNESS # Display label and image coordinates -TEXT_AREA_X = display.width // 14 +TEXT_AREA_X = display.width // 6 TEXT_AREA_Y = 20 TEXT_AREA_LOCATION_X = display.width // 3 TEXT_AREA_LOCATION_Y = display.height - 20 @@ -48,7 +48,7 @@ font = terminalio.FONT # Draw a label for the header text -text_area = label.Label(font, text="Where is Trevor?", color=0x000000, scale=3) +text_area = label.Label(font, text="Where's My Friend?", color=0x000000, scale=2) text_area.x = TEXT_AREA_X text_area.y = TEXT_AREA_Y group.append(text_area)