1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-30 17:23:51 +01:00

Correct the left edge of sizer between channels

This commit is contained in:
Paul Licameli
2017-06-17 15:56:21 -04:00
parent f9865f39ef
commit 4264406795

View File

@@ -3182,7 +3182,7 @@ void TrackPanelCellIterator::UpdateRect()
// tall zone below, in case there is no next track) // tall zone below, in case there is no next track)
auto partner = mpTrack->GetLink(); auto partner = mpTrack->GetLink();
if ( partner && mpTrack->GetLinked() ) if ( partner && mpTrack->GetLinked() )
mRect.x = mPanel->GetLeftOffset(); mRect.x = kTrackInfoWidth;
else else
mRect.x = kLeftMargin; mRect.x = kLeftMargin;
mRect.width -= (mRect.x + kRightMargin); mRect.width -= (mRect.x + kRightMargin);