forked from len0rd/rockbox
Bugfix: Only mangle the current playlist when the shuffle setting is changed (from menu) when the music is playing. This behaviour was already present in the recorder's F2 quickscreen, and doing otherwise isn't intuitive.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6391 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
484285200a
commit
d6587f9b31
1 changed files with 2 additions and 1 deletions
|
@ -1047,7 +1047,8 @@ static bool playback_settings_menu(void)
|
|||
result = menu_run(m);
|
||||
menu_exit(m);
|
||||
|
||||
if (old_shuffle != global_settings.playlist_shuffle)
|
||||
if ((old_shuffle != global_settings.playlist_shuffle)
|
||||
&& (audio_status() & AUDIO_STATUS_PLAY))
|
||||
{
|
||||
if (global_settings.playlist_shuffle)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue