1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-06 14:52:34 +02:00

Correct MixerTrackCluster::GetRight()

This commit is contained in:
Paul Licameli 2017-03-31 00:48:04 -04:00
parent a936aed643
commit 8928bd4d7b

View File

@ -324,7 +324,7 @@ WaveTrack *MixerTrackCluster::GetRight() const
{
auto left = GetWave();
if (left)
return static_cast<WaveTrack*>(left);
return static_cast<WaveTrack*>(left->GetLink());
else
return nullptr;
}