From fb4b77577eb3ae2e93f05cffd9ba0029af7b65c3 Mon Sep 17 00:00:00 2001 From: James Carr Date: Tue, 3 Aug 2021 10:02:33 +0100 Subject: [PATCH] Remove max_glyphs usage with Display_Text Label --- AHT20_OLED/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AHT20_OLED/code.py b/AHT20_OLED/code.py index d05352641..c5c95be93 100755 --- a/AHT20_OLED/code.py +++ b/AHT20_OLED/code.py @@ -29,7 +29,7 @@ display.show(splash) text = "hello world" -text_area = label.Label(terminalio.FONT, color=0xFFFF00, x=15, y=0, max_glyphs=200) +text_area = label.Label(terminalio.FONT, color=0xFFFF00, x=15, y=0) splash.append(text_area) while True: