Skip to content

Commit

Permalink
Merge pull request #2865 from brentru/fix-2-wheres-my-friend
Browse files Browse the repository at this point in the history
Fix Wheres My Friend Project
  • Loading branch information
TheKitty authored Aug 6, 2024
2 parents 16c3816 + 9645505 commit 1d7f02f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PyPortal/PyPortal_Wheres_My_Friend/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit 1d7f02f

Please sign in to comment.