Add toc and cue information to export format descriptions
[ardour.git] / libs / ardour / export_format_specification.cc
index 6fad14d86a15b58ccb6d3cd56be99eaa836c2462..763f507de4a7bb045390178c9b5df8fec6b98db3 100644 (file)
@@ -574,6 +574,14 @@ ExportFormatSpecification::description ()
                break;
        }
 
+       if (_with_toc) {
+               desc += ", TOC";
+       }
+
+       if (_with_cue) {
+               desc += ", CUE";
+       }
+
        return desc;
 }