From 1669a93562781a623ad7c51a67ad53bafe4f9d54 Mon Sep 17 00:00:00 2001 From: James Carr Date: Fri, 2 Jul 2021 15:25:09 +0100 Subject: [PATCH 1/2] Update .gitignore --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 06b038e..5865216 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,8 @@ bundles venv/ .vscode .DS_STORE +develop-eggs/ +eggs/ +.eggs/ +*.egg-info/ +*.egg From 03b189650d47c20ffedf8ad9315339815ddf9063 Mon Sep 17 00:00:00 2001 From: James Carr Date: Fri, 2 Jul 2021 15:58:33 +0100 Subject: [PATCH 2/2] Remove max_size parameter --- examples/imageload_netpbm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/imageload_netpbm.py b/examples/imageload_netpbm.py index 9228619..c6347b4 100644 --- a/examples/imageload_netpbm.py +++ b/examples/imageload_netpbm.py @@ -27,7 +27,7 @@ display = adafruit_ili9341.ILI9341(display_bus, width=320, height=240) # Make the display context -splash = displayio.Group(max_size=10) +splash = displayio.Group() display.show(splash) # image = "images/netpbm_p1_mono_ascii.pbm" # image = "images/netpbm_p2_ascii.pgm"