1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-08 08:30:02 +02:00
This commit is contained in:
v.audacity 2014-10-07 06:53:15 +00:00
parent f9c1d8c4bb
commit 67bbebc06b

View File

@ -4422,7 +4422,8 @@ void AudacityProject::DoZoomFitV()
TrackListIterator iter(mTracks); TrackListIterator iter(mTracks);
Track *t = iter.First(); Track *t = iter.First();
while (t) { while (t) {
if (t->GetKind() == Track::Wave) if ((t->GetKind() == Track::Wave) &&
!t->GetMinimized())
count++; count++;
else else
height -= t->GetHeight(); height -= t->GetHeight();