| 280 | } |
| 281 | |
| 282 | void PlaybackController::on_repeatModeButton_clicked() |
| 283 | { |
| 284 | if (this->repeatMode == RepeatMode::Off) |
| 285 | this->setRepeatModeAndUpdateIcons(RepeatMode::One); |
| 286 | else if (this->repeatMode == RepeatMode::One) |
| 287 | this->setRepeatModeAndUpdateIcons(RepeatMode::All); |
| 288 | else if (this->repeatMode == RepeatMode::All) |
| 289 | this->setRepeatModeAndUpdateIcons(RepeatMode::Off); |
| 290 | } |
| 291 | |
| 292 | void PlaybackController::currentSelectedItemsChanged(playlistItem *item1, |
| 293 | playlistItem *item2, |
nothing calls this directly
no test coverage detected