Remove disabling repeat and shuffle buttons

It's more confusing than helpful
This commit is contained in:
Jonas Kvinge
2020-11-20 21:48:10 +01:00
parent 47754951f0
commit 91e5cafe76
5 changed files with 10 additions and 20 deletions

View File

@@ -847,7 +847,6 @@ void Playlist::InsertSmartPlaylist(PlaylistGeneratorPtr generator, const int pos
void Playlist::TurnOnDynamicPlaylist(PlaylistGeneratorPtr gen) {
dynamic_playlist_ = gen;
playlist_sequence_->SetUsingDynamicPlaylist(true);
ShuffleModeChanged(PlaylistSequence::Shuffle_Off);
emit DynamicModeChanged(true);
Save();
@@ -2197,7 +2196,6 @@ void Playlist::TurnOffDynamicPlaylist() {
dynamic_playlist_.reset();
if (playlist_sequence_) {
playlist_sequence_->SetUsingDynamicPlaylist(false);
ShuffleModeChanged(playlist_sequence_->shuffle_mode());
}