From: Robin Gareus Date: Sat, 12 Mar 2016 02:02:31 +0000 (+0100) Subject: reset export status when not normalizing - fixes #6816 X-Git-Tag: 5.0-pre0~1350 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=ac3da53f71b65fae8da6388c6480810c8f542785 reset export status when not normalizing - fixes #6816 --- diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index c84af00514..cbc2ed3c91 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -234,6 +234,7 @@ ExportHandler::process (framecnt_t frames) Glib::Threads::Mutex::Lock l (export_status->lock()); return process_normalize (); } else { + export_status->active_job = ExportStatus::Exporting; Glib::Threads::Mutex::Lock l (export_status->lock()); return process_timespan (frames); }