From 69d08be0830966175b92d68ece8ad0119898fef2 Mon Sep 17 00:00:00 2001 From: Christian Soffke Date: Tue, 30 Nov 2021 21:02:32 +0100 Subject: Additional Single Mode options In addition to the existing behavior of pausing after each song, this adds options to pause after playing current: Album, Album Artist, Artist, Composer, Grouping / Work, or Genre. Allows you, for example, to only listen to the remaining movements of a classical work without having to purge your playlist of any upcoming songs. Change-Id: If18f4a5d139320026cc5fcc9adf29dd8e4e028a8 --- apps/pcmbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/pcmbuf.c') diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c index c4164c3b4b..8718d730fb 100644 --- a/apps/pcmbuf.c +++ b/apps/pcmbuf.c @@ -741,7 +741,7 @@ void pcmbuf_start_track_change(enum pcm_track_change_type type) } } - if (auto_skip && global_settings.single_mode && !global_settings.party_mode) + if (auto_skip && global_settings.single_mode != SINGLE_MODE_OFF && !global_settings.party_mode) crossfade = false; if (crossfade) -- cgit v1.2.3