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

@@ -1465,13 +1465,13 @@ void PlaylistView::focusInEvent(QFocusEvent *event) {
void PlaylistView::DynamicModeChanged(bool dynamic) {
if (!dynamic) {
dynamic_controls_->hide();
}
else {
if (dynamic) {
RepositionDynamicControls();
dynamic_controls_->show();
}
else {
dynamic_controls_->hide();
}
}