13
0

Add toc and cue information to export format descriptions

git-svn-id: svn://localhost/ardour2/branches/3.0@11306 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sakari Bergen 2012-01-22 18:07:53 +00:00
parent 09d1fbd6c1
commit 8e98352b6c

View File

@ -574,6 +574,14 @@ ExportFormatSpecification::description ()
break;
}
if (_with_toc) {
desc += ", TOC";
}
if (_with_cue) {
desc += ", CUE";
}
return desc;
}