summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-11 20:51:19 +0100
committerRobin Gareus <robin@gareus.org>2016-02-11 20:58:05 +0100
commit2c2002ee9cae4fbfa1c72839cafc147506da5887 (patch)
treead95afbb7dea06dbc4bf3d731c8c95d536bff83c /libs/ardour/export_handler.cc
parente6b06597b75010c955c6b44db0025a3e8642d9b0 (diff)
Prepare for optional timespan name during export.
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 6b59afec89..42de0fa0c6 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -148,6 +148,14 @@ ExportHandler::do_export ()
}
export_status->total_timespans = timespan_set.size();
+ if (export_status->total_timespans > 1) {
+ // always include timespan if there's more than one.
+ for (ConfigMap::iterator it = config_map.begin(); it != config_map.end(); ++it) {
+ FileSpec & spec = it->second;
+ spec.filename->include_timespan = true;
+ }
+ }
+
/* Start export */
Glib::Threads::Mutex::Lock l (export_status->lock());