diff options
| author | Rockwell Schrock <rockwell@schrock.me> | 2025-02-01 10:15:39 -0500 |
|---|---|---|
| committer | Rockwell Schrock <rockwell@schrock.me> | 2025-02-01 12:44:59 -0500 |
| commit | 8b12310990bbf03835bd910070841977cd57d22f (patch) | |
| tree | c8f52007cf1b3f235735a7234e3de3109a1d45f9 /lua | |
| parent | b98e67972bca390961ecd2240ab3d3553ea0bf86 (diff) | |
| download | tangara-fw-8b12310990bbf03835bd910070841977cd57d22f.tar.gz | |
On the playing screen, show "Not Playing" when the queue is empty
Diffstat (limited to 'lua')
| -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 08cdaaa2..9391a85c 100644 --- a/lua/playing.lua +++ b/lua/playing.lua @@ -276,7 +276,7 @@ return screen:new { if queue.loading:get() then title:set { text = "Loading..." } else - title:set{text=""} + title:set{ text = "Not Playing" } end album:set{text=""} artist:set{text=""} |
