diff options
author | Dana Conrad <dconrad@fastmail.com> | 2021-04-18 13:00:41 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2021-05-03 20:10:27 +0000 |
commit | 4f83e66cd4e00bfa225f54b2c314a3d42d09ca7a (patch) | |
tree | 186717c39b55272249efc681091912a49e4872f2 /apps/iap | |
parent | 49edfc237ba9ae27eee5e915e86989d9ee01b1da (diff) |
FS#13287 - Load a newly saved playlist and resume where it was
Works from any playlist saving operation accessed from the
While Playing Screen, all other playlist saving operations
are unchanged.
Now a user-selectable setting! Located in
General Settings -> Playlists -> Current Playlist ->
Reload After Saving (Yes/No)
Change-Id: I5085c3f4c56c518a812d5ee015d15cc4dca19a28
Diffstat (limited to 'apps/iap')
-rw-r--r-- | apps/iap/iap-lingo4.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/iap/iap-lingo4.c b/apps/iap/iap-lingo4.c index b601501b3d..4ec5c462a1 100644 --- a/apps/iap/iap-lingo4.c +++ b/apps/iap/iap-lingo4.c @@ -108,7 +108,8 @@ static void seek_to_playlist(unsigned long index) MAX_PATH); ft_play_playlist(selected_playlist, global_settings.playlist_catalog_dir, - strrchr(selected_playlist, '/') + 1); + strrchr(selected_playlist, '/') + 1, + false); } static unsigned long nbr_total_playlists(void) |