mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-12 06:37:52 +02:00
Paul Licameli's fix for http://bugzilla.audacityteam.org/show_bug.cgi?id=751.
This commit is contained in:
parent
f9c1d8c4bb
commit
67bbebc06b
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user