| 267 | } |
| 268 | |
| 269 | void PlaybackController::previousFrame() |
| 270 | { |
| 271 | this->pausePlayback(); |
| 272 | if (this->currentFrameIdx != this->ui.frameSlider->minimum()) |
| 273 | this->setCurrentFrameAndUpdate(this->currentFrameIdx - 1); |
| 274 | } |
| 275 | |
| 276 | void PlaybackController::on_frameSlider_valueChanged(int value) |
| 277 | { |
no test coverage detected