1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 08:27:13 +01:00

Bug 2439 - Mix and Render to New Track selects left channel of new stereo track

This commit is contained in:
James Crook
2020-05-29 21:13:37 +01:00
parent f3f0f4610d
commit 6d49228d65

View File

@@ -107,10 +107,11 @@ void DoMixAndRender
// Bug 2218, remember more things... // Bug 2218, remember more things...
if (selectedCount>=1) { if (selectedCount>=1) {
pNewLeft->SetWaveColorIndex(firstColour); pNewLeft->SetWaveColorIndex(firstColour);
pNewLeft->SetSelected(true);
if (pNewRight) { if (pNewRight) {
pNewRight->SetWaveColorIndex(firstColour); pNewRight->SetWaveColorIndex(firstColour);
pNewRight->SetSelected(true);
} }
pNewLeft->SetSelected(true);
} }
// Permute the tracks as needed // Permute the tracks as needed