I've been wanting this feature for a long time, so I'm developing it myself. I have never worked with qt before so require a little help.
I would like to have a button that starts playing the playlist after shuffling (instead of having to manually click on a random track from the playlist, it's just inconvenient). This button would be positioned between the "Clear Playlist" and "Undo" buttons.
I probably would have to create a new action in mainwindow.ui and add it to ui_->playlist->SetActions
. And then create a corresponding function PlaylistShufflePlay()
for it where shuffle (I couldn't find a function for this) is called before calling PlaylistPlay()
.
Can somebody point me in the right direction on how this should be implemented?