Skip to content
Snippets Groups Projects
Commit 2c74b883 authored by Alexandre Perraud's avatar Alexandre Perraud
Browse files

Audio : Keep shuffle mode when clicking twice on fab shuffle button

parent 4829665f
No related branches found
No related tags found
No related merge requests found
......@@ -386,7 +386,8 @@ public class AudioBrowserFragment extends BaseAudioBrowser implements SwipeRefre
int randomSong = rand.nextInt(count);
if (mService != null) {
mService.load(list, randomSong);
mService.shuffle();
if (!mService.isShuffling())
mService.shuffle();
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment