1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-12 06:37:52 +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);
Track *t = iter.First();
while (t) {
if (t->GetKind() == Track::Wave)
if ((t->GetKind() == Track::Wave) &&
!t->GetMinimized())
count++;
else
height -= t->GetHeight();