@@ -72,10 +72,10 @@ def __init__(self):
72
72
self .group = displayio .Group (max_size = 4 )
73
73
self .glyph_width , self .glyph_height = font .get_bounding_box ()[:2 ]
74
74
self .pbar = ProgressBar (0 , 0 , board .DISPLAY .width ,
75
- self .glyph_height , bar_color = 0x0000ff ,
75
+ self .glyph_height * 2 , bar_color = 0x0000ff ,
76
76
outline_color = 0x333333 , stroke = 1 )
77
77
self .iconbar = icons .IconBar ()
78
- self .iconbar .group .y = 112
78
+ self .iconbar .group .y = 1000
79
79
for i in range (5 , 8 ):
80
80
self .iconbar .icons [i ].x += 32
81
81
self .label = adafruit_display_text .label .Label (font , line_spacing = 1.0 ,
@@ -471,6 +471,7 @@ def play_all(playlist, *, folder='', trim=0, location='/sd'):
471
471
'folder' is a display name for the user."""
472
472
i = 0
473
473
board .DISPLAY .show (playback_display .group )
474
+ playback_display .iconbar .group .y = 112
474
475
while 0 <= i < len (playlist ):
475
476
filename = playlist [i ]
476
477
i = play_one_file (i , join (location , filename ), folder , filename [trim :- 4 ], len (playlist ))
0 commit comments