From cb9560428d34c2bf2371d0dda869b5c47166a926 Mon Sep 17 00:00:00 2001 From: ailurux Date: Tue, 18 Jun 2024 15:30:35 +1000 Subject: [PATCH] Fix issue with previous not working with shuffle --- lua/playing.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/playing.lua b/lua/playing.lua index 1acfe25e..71d95892 100644 --- a/lua/playing.lua +++ b/lua/playing.lua @@ -171,7 +171,7 @@ return screen:new { local prev_btn = controls:Button {} prev_btn:onClicked(function() - if playback.position:get() > 1 or queue.position:get() == 1 then + if playback.position:get() > 3 then playback.position:set(0) else queue.previous()