From d131f882ee28462b61e1adcdc8e336dfd39a702a Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 12 Mar 2016 10:11:06 +0100 Subject: [PATCH] cleaner version of ac3da53 --- libs/ardour/export_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index cbc2ed3c91..e66af848b9 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -234,7 +234,6 @@ 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); } @@ -243,6 +242,7 @@ ExportHandler::process (framecnt_t frames) int ExportHandler::process_timespan (framecnt_t frames) { + export_status->active_job = ExportStatus::Exporting; /* update position */ framecnt_t frames_to_read = 0;