summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorRockwell Schrock <rockwell@schrock.me>2025-02-01 10:15:39 -0500
committerRockwell Schrock <rockwell@schrock.me>2025-02-01 12:44:59 -0500
commit8b12310990bbf03835bd910070841977cd57d22f (patch)
treec8f52007cf1b3f235735a7234e3de3109a1d45f9 /lua
parentb98e67972bca390961ecd2240ab3d3553ea0bf86 (diff)
downloadtangara-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.lua2
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=""}