Add toc and cue information to export format descriptions
authorSakari Bergen <sakari.bergen@beatwaves.net>
Sun, 22 Jan 2012 18:07:53 +0000 (18:07 +0000)
committerSakari Bergen <sakari.bergen@beatwaves.net>
Sun, 22 Jan 2012 18:07:53 +0000 (18:07 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@11306 d708f5d6-7413-0410-9779-e7cbd77b26cf

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;
 }