Skip to content

Commit 50efccd

Browse files
authored
Merge pull request #25 from lesamouraipourpre/remove-max-glyphs
Remove usage of max_glyphs with Label
2 parents 64cc03d + 47fbc9f commit 50efccd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

examples/mlx90640_pygamer.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,8 @@ def MakeHeatMapColor():
7777
# Create the super Group
7878
group = displayio.Group()
7979

80-
min_label = Label(terminalio.FONT, max_glyphs=10, color=palette[0], x=0, y=110)
81-
max_label = Label(
82-
terminalio.FONT, max_glyphs=10, color=palette[last_color], x=80, y=110
83-
)
80+
min_label = Label(terminalio.FONT, color=palette[0], x=0, y=110)
81+
max_label = Label(terminalio.FONT, color=palette[last_color], x=80, y=110)
8482

8583
# Add all the sub-group to the SuperGroup
8684
group.append(image_group)

0 commit comments

Comments
 (0)