| 260 | } |
| 261 | |
| 262 | void PlaybackController::nextFrame() |
| 263 | { |
| 264 | this->pausePlayback(); |
| 265 | if (this->currentFrameIdx < this->ui.frameSlider->maximum()) |
| 266 | this->setCurrentFrameAndUpdate(this->currentFrameIdx + 1); |
| 267 | } |
| 268 | |
| 269 | void PlaybackController::previousFrame() |
| 270 | { |
no test coverage detected