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:
parent
878818a1aa
commit
27ede251d5
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user