From d0857033a4a66b81cfd571f59450128852a9d345 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Tue, 19 May 2020 10:55:17 -0500 Subject: [PATCH] jeplayer: Enlarge progress bar --- CircuitPython_JEplayer_mp3/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CircuitPython_JEplayer_mp3/code.py b/CircuitPython_JEplayer_mp3/code.py index d99ccbe74..d38d86bb8 100644 --- a/CircuitPython_JEplayer_mp3/code.py +++ b/CircuitPython_JEplayer_mp3/code.py @@ -72,7 +72,7 @@ class PlaybackDisplay: self.group = displayio.Group(max_size=4) self.glyph_width, self.glyph_height = font.get_bounding_box()[:2] self.pbar = ProgressBar(0, 0, board.DISPLAY.width, - self.glyph_height, bar_color=0x0000ff, + self.glyph_height*2, bar_color=0x0000ff, outline_color=0x333333, stroke=1) self.iconbar = icons.IconBar() self.iconbar.group.y = 112