From 8b12310990bbf03835bd910070841977cd57d22f Mon Sep 17 00:00:00 2001 From: Rockwell Schrock Date: Sat, 1 Feb 2025 10:15:39 -0500 Subject: [PATCH] On the playing screen, show "Not Playing" when the queue is empty --- lua/playing.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=""}