Handle a case where the playing widget is gets stuck when switch fast

between context and other widgets
This commit is contained in:
Jonas Kvinge 2019-08-01 21:15:46 +02:00
parent e90a36da79
commit e7c3dafa36
1 changed files with 6 additions and 2 deletions

View File

@ -159,12 +159,16 @@ void PlayingWidget::SetEnabled(bool enabled) {
void PlayingWidget::SetEnabled() {
enabled_ = true;
if (!visible_ && active_) SetVisible(true);
if (active_ && (!visible_ || (timeline_show_hide_->state() == QTimeLine::Running && timeline_show_hide_->currentFrame() <= 2))) {
SetVisible(true);
}
}
void PlayingWidget::SetDisabled() {
enabled_ = false;
if (visible_) SetVisible(false);
if (visible_ || (timeline_show_hide_->state() == QTimeLine::Running && timeline_show_hide_->currentFrame() > 2 && total_height_ - timeline_show_hide_->currentFrame() <= 2)) {
SetVisible(false);
}
}
void PlayingWidget::SetVisible(bool visible) {