mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-08 08:30:02 +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);
|
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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user