diff --git a/src/Menus.cpp b/src/Menus.cpp index 148d6adff..22793a97f 100644 --- a/src/Menus.cpp +++ b/src/Menus.cpp @@ -3390,6 +3390,12 @@ double AudacityProject::OnClipMove auto t0 = viewInfo.selectedRegion.t0(); state.capturedClip = wt->GetClipAtTime( t0 ); + if (state.capturedClip == nullptr && track->GetLinked() && track->GetLink()) { + // the clips in the right channel may be different from the left + track = track->GetLink(); + wt = static_cast(track); + state.capturedClip = wt->GetClipAtTime(t0); + } if (state.capturedClip == nullptr) return 0.0;