diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-06-14 13:36:29 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-06-14 13:36:29 +1000 |
| commit | 2d6c70d5f66b55ff77f1df9c406ec9054cb41b72 (patch) | |
| tree | d3e17ab905814136ace5467665ba134b8d594e3a | |
| parent | 7f2d56e29ad41e13888828d2d58b17c327a94e36 (diff) | |
| download | tangara-fw-2d6c70d5f66b55ff77f1df9c406ec9054cb41b72.tar.gz | |
Fix missing duration when no track is playing
| -rw-r--r-- | lua/playing.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/playing.lua b/lua/playing.lua index d3951403..1acfe25e 100644 --- a/lua/playing.lua +++ b/lua/playing.lua @@ -115,7 +115,7 @@ return screen:new { w = lvgl.SIZE_CONTENT, h = lvgl.SIZE_CONTENT, align = lvgl.ALIGN.RIGHT_MID, - text = "", + text = format_time(0), text_font = font.fusion_10, } playlist:Object({ w = 3, h = 1 }) -- spacer |
