summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-03-12 03:02:31 +0100
committerRobin Gareus <robin@gareus.org>2016-03-12 03:02:31 +0100
commitac3da53f71b65fae8da6388c6480810c8f542785 (patch)
tree0ddef897c2625b61fceb6b1e83544076e85267e7 /libs/ardour/export_handler.cc
parent4ad055745f6933d601998e71e040057c1fe31dd1 (diff)
reset export status when not normalizing - fixes #6816
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc1
1 files changed, 1 insertions, 0 deletions
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);
}