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)