1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Fix problem with linked label tracks and truncate silence

This commit is contained in:
BusinessmanProgrammerSteve
2010-04-12 15:29:53 +00:00
parent b3d6457ef5
commit fc1617ff2f
2 changed files with 8 additions and 23 deletions

View File

@@ -680,7 +680,7 @@ bool EffectTruncSilence::Process()
// Non-wave tracks: just do a sync adjust
double cutStart = (r->start + r->end - cutLen) / 2;
double cutEnd = cutStart + cutLen;
t->SyncAdjust(cutStart, cutEnd);
t->SyncAdjust(cutEnd, cutStart);
}
}
++whichReg;