From 2a3c95e1432983d650df325f61adc530606fd751 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Fri, 28 Dec 2018 12:34:07 +0100 Subject: [PATCH] Fix an issue where the stop button would be disabled too soon. --- futatabi/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/futatabi/mainwindow.cpp b/futatabi/mainwindow.cpp index bbaa5a4..70402cc 100644 --- a/futatabi/mainwindow.cpp +++ b/futatabi/mainwindow.cpp @@ -516,11 +516,11 @@ void MainWindow::live_player_clip_done() set_output_status("paused"); playlist_clips->set_progress({}); playlist_clips->set_currently_playing(-1, 0.0f); + ui->stop_btn->setEnabled(false); } else { playlist_clips->set_progress({ { row + 1, 0.0f } }); playlist_clips->set_currently_playing(row + 1, 0.0f); } - ui->stop_btn->setEnabled(false); } pair MainWindow::live_player_get_next_clip() -- 2.39.2