File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3030large_font = cwd + "/fonts/Helvetica-Bold-36.bdf"
3131small_font = cwd + "/fonts/Helvetica-Bold-16.bdf"
3232
33- root_group = displayio .Group (max_size = 3 )
33+ root_group = displayio .Group ()
3434print ('loading fonts...' )
3535weight_font = bitmap_font .load_font (large_font )
3636weight_font .load_glyphs (b'0123456789.goz-SCALEROIO ' )
3939text_font .load_glyphs (b'sendig!t.' )
4040
4141print ('making labels...' )
42- weight_label = Label (weight_font , max_glyphs = 20 )
42+ weight_label = Label (weight_font )
4343weight_label .x = 75
4444weight_label .y = 120
4545root_group .append (weight_label )
4646weight_label .text = "---"
4747
48- title_label = Label (weight_font , max_glyphs = 20 )
48+ title_label = Label (weight_font )
4949title_label .x = 65
5050title_label .y = 20
5151root_group .append (title_label )
5252title_label .text = "IO SCALE"
5353
54- text_label = Label (text_font , max_glyphs = 25 )
54+ text_label = Label (text_font )
5555text_label .x = 100
5656text_label .y = 200
5757text_label .color = 0xFFFFFF
You can’t perform that action at this time.
0 commit comments