From 47fbc9f70c68bc3e48f2dc25c7156825cdcdda50 Mon Sep 17 00:00:00 2001 From: James Carr Date: Thu, 22 Jul 2021 14:38:26 +0100 Subject: [PATCH] Remove usage of max_glyphs with Label --- examples/mlx90640_pygamer.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/mlx90640_pygamer.py b/examples/mlx90640_pygamer.py index a7369d4..11763b9 100644 --- a/examples/mlx90640_pygamer.py +++ b/examples/mlx90640_pygamer.py @@ -77,10 +77,8 @@ def MakeHeatMapColor(): # Create the super Group group = displayio.Group() -min_label = Label(terminalio.FONT, max_glyphs=10, color=palette[0], x=0, y=110) -max_label = Label( - terminalio.FONT, max_glyphs=10, color=palette[last_color], x=80, y=110 -) +min_label = Label(terminalio.FONT, color=palette[0], x=0, y=110) +max_label = Label(terminalio.FONT, color=palette[last_color], x=80, y=110) # Add all the sub-group to the SuperGroup group.append(image_group)