Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MagTag_Google_Calendar/authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
graphics.splash.append(label_overview_text)

label_verification_url = Label(
font_small, x=0, y=40, line_spacing=0.75, color=0x000000, max_glyphs=90
font_small, x=0, y=40, line_spacing=0.75, color=0x000000
)
graphics.splash.append(label_verification_url)

label_user_code = Label(
font_small, x=0, y=80, color=0x000000, line_spacing=0.75, max_glyphs=50
font_small, x=0, y=80, color=0x000000, line_spacing=0.75
)
graphics.splash.append(label_user_code)

Expand Down
2 changes: 1 addition & 1 deletion MagTag_Google_Calendar/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def display_calendar_events(resp_events):
magtag.splash.append(line_header)

font_h1 = bitmap_font.load_font("fonts/Arial-18.pcf")
label_header = label.Label(font_h1, x=5, y=15, color=0x000000, max_glyphs=30)
label_header = label.Label(font_h1, x=5, y=15, color=0x000000)
magtag.splash.append(label_header)

# Set up calendar event fonts
Expand Down