1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 08:19:42 +01:00

* Update prev/next controls when shuffle or repeat modes changes.

This commit is contained in:
Christian Muehlhaeuser 2012-11-28 09:07:54 +01:00
parent ad179b842c
commit 5e18b0aedd

View File

@ -541,6 +541,8 @@ AudioControls::onRepeatModeChanged( PlaylistModes::RepeatMode mode )
default:
break;
}
onControlStateChanged();
}
@ -595,6 +597,8 @@ AudioControls::onShuffleModeChanged( bool enabled )
ui->repeatButton->setEnabled( true );
}
onControlStateChanged();
}