| 442 | } |
| 443 | |
| 444 | void ScrubberBase::onAutoRepeatTick() { |
| 445 | if (autorepeat_direction_ == 0) { |
| 446 | return; |
| 447 | } |
| 448 | stepBy(autorepeat_direction_); |
| 449 | autorepeat_timer_->setInterval(kAutorepeatIntervalMs); |
| 450 | autorepeat_timer_->start(); |
| 451 | } |
| 452 | |
| 453 | void ScrubberBase::setHoverAlphaInternal(qreal alpha) { |
| 454 | hover_alpha_ = alpha; |
nothing calls this directly
no test coverage detected