mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-27 23:18:46 +01:00
Don't collapse recorded tracks when Auto-fit enabled
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user