diff --git a/src/core/mainwindow.cpp b/src/core/mainwindow.cpp index c8f0c2a30..57daedc70 100644 --- a/src/core/mainwindow.cpp +++ b/src/core/mainwindow.cpp @@ -1458,7 +1458,7 @@ void MainWindow::ResumePlayback() { std::shared_ptr connection = std::make_shared(); *connection = QObject::connect(app_->player(), &Player::Playing, app_->player(), [this, connection]() { QObject::disconnect(*connection); - app_->player()->PlayPause(); + QTimer::singleShot(300, app_->player(), &Player::PlayPauseHelper); }); } app_->player()->Play(playback_position * kNsecPerSec);