Skip to content

Commit 1d7f02f

Browse files
authored
Merge pull request #2865 from brentru/fix-2-wheres-my-friend
Fix Wheres My Friend Project
2 parents 16c3816 + 9645505 commit 1d7f02f

File tree

1 file changed

+2
-2
lines changed
  • PyPortal/PyPortal_Wheres_My_Friend

1 file changed

+2
-2
lines changed

PyPortal/PyPortal_Wheres_My_Friend/code.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
display.brightness = BACKLIGHT_BRIGHTNESS
2929

3030
# Display label and image coordinates
31-
TEXT_AREA_X = display.width // 14
31+
TEXT_AREA_X = display.width // 6
3232
TEXT_AREA_Y = 20
3333
TEXT_AREA_LOCATION_X = display.width // 3
3434
TEXT_AREA_LOCATION_Y = display.height - 20
@@ -48,7 +48,7 @@
4848
font = terminalio.FONT
4949

5050
# Draw a label for the header text
51-
text_area = label.Label(font, text="Where is Trevor?", color=0x000000, scale=3)
51+
text_area = label.Label(font, text="Where's My Friend?", color=0x000000, scale=2)
5252
text_area.x = TEXT_AREA_X
5353
text_area.y = TEXT_AREA_Y
5454
group.append(text_area)

0 commit comments

Comments
 (0)