1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 15:49:36 +02:00

Don't collapse recorded tracks when Auto-fit enabled

This commit is contained in:
Steve Daulton 2018-08-26 21:10:57 +01:00
parent 878818a1aa
commit 27ede251d5

View File

@ -1271,8 +1271,9 @@ bool ControlToolBar::DoRecord(AudacityProject &project,
newTrack->SetName(baseTrackName + wxT("_") + nameSuffix);
}
if (recordingChannels > 2)
newTrack->SetMinimized(true);
if ((recordingChannels > 2) && !(p->GetTracksFitVerticallyZoomed())) {
newTrack->SetMinimized(true);
}
if (recordingChannels == 2) {
if (c == 0) {