summaryrefslogtreecommitdiff
path: root/libs/ardour/export_filename.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-10-02 21:22:36 +0200
committerRobin Gareus <robin@gareus.org>2018-10-02 21:28:49 +0200
commit62cd539143f83cb1464ca06811ae5246c3193d7c (patch)
tree12a0ed7a146e759a7ad1804e6d40a9c77c207112 /libs/ardour/export_filename.cc
parent2b95b5b8b36fa515bfad67eec55f0b44a0d7d6bc (diff)
Fix false-positive duplicate format detection
Previously, stem-exports of more than 1 channel always included the export-format, even if only one format was exported.
Diffstat (limited to 'libs/ardour/export_filename.cc')
-rw-r--r--libs/ardour/export_filename.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/ardour/export_filename.cc b/libs/ardour/export_filename.cc
index 1c8c53d117..511db44a6b 100644
--- a/libs/ardour/export_filename.cc
+++ b/libs/ardour/export_filename.cc
@@ -185,8 +185,7 @@ ExportFilename::get_path (ExportFormatSpecPtr format) const
&& !include_timespan
&& !include_channel_config
&& !include_channel
- && !include_date
- && !include_format_name) {
+ && !include_date) {
with_timespan = true;
}