diff --git a/src/widgets/playingwidget.cpp b/src/widgets/playingwidget.cpp index ded36cb28..7af9febd1 100644 --- a/src/widgets/playingwidget.cpp +++ b/src/widgets/playingwidget.cpp @@ -180,10 +180,7 @@ void PlayingWidget::SetDisabled() { void PlayingWidget::SetVisible(bool visible) { if (timeline_show_hide_->state() == QTimeLine::Running) { - if (timeline_show_hide_->currentFrame() <= 5) { - timeline_show_hide_->stop(); - } - else if (timeline_show_hide_->direction() == QTimeLine::Backward && enabled_ && active_) { + if (timeline_show_hide_->direction() == QTimeLine::Backward && enabled_ && active_) { timeline_show_hide_->toggleDirection(); return; } @@ -191,9 +188,6 @@ void PlayingWidget::SetVisible(bool visible) { timeline_show_hide_->toggleDirection(); return; } - else { - timeline_show_hide_->stop(); - } } if (visible != visible_) {