1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-22 14:11:41 +01:00

Iterate over all clips of a track, including cutlines, where needed

This commit is contained in:
Paul Licameli
2016-08-13 16:06:00 -04:00
parent 6909bdf398
commit 84a6456788
5 changed files with 78 additions and 5 deletions

View File

@@ -94,7 +94,7 @@ void UndoManager::CalculateSpaceUsage()
while (wt)
{
// Scan all clips within current track
for(const auto &clip: wt->GetClips())
for(const auto &clip : wt->GetAllClips())
{
// Scan all blockfiles within current clip
BlockArray *blocks = clip->GetSequenceBlockArray();