1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-26 00:03:52 +02:00

modified version of Steve's patch for bugs 428 and 430

This commit is contained in:
v.audacity
2013-01-05 00:05:59 +00:00
parent 97677e1d9f
commit 72825001f5
4 changed files with 49 additions and 73 deletions

View File

@@ -1060,10 +1060,9 @@ int TrackList::GetNumExportChannels(bool selectionOnly)
for (tr = iter.First(this); tr != NULL; tr = iter.Next()) {
// Only want wave tracks
if (tr->GetKind() != Track::Wave) {
// Want only unmuted wave tracks.
if ((tr->GetKind() != Track::Wave) || tr->GetMute())
continue;
}
// do we only want selected ones?
if (selectionOnly && !(tr->GetSelected())) {
@@ -1242,14 +1241,3 @@ double TrackList::GetEndTime() const
return max;
}
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
// version control system. Please do not modify past this point.
//
// Local Variables:
// c-basic-offset: 3
// indent-tabs-mode: nil
// End:
//
// vim: et sts=3 sw=3
// arch-tag: 575d97aa-2da9-476d-a39e-2ccad16b7cdd