| 444 | } |
| 445 | |
| 446 | void PlaybackController::updatePlayPauseButtonIcon() |
| 447 | { |
| 448 | if (this->playbackMode == PlaybackMode::Stopped) |
| 449 | this->ui.playPauseButton->setIcon(this->iconPlay); |
| 450 | else |
| 451 | this->ui.playPauseButton->setIcon(this->iconPause); |
| 452 | } |
| 453 | |
| 454 | void PlaybackController::updateFrameRange() |
| 455 | { |
no outgoing calls
no test coverage detected