1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 17:09:26 +02:00

Fix keystroke handling in TrackPanel (such as Shift+M)

This commit is contained in:
Paul Licameli 2017-06-15 21:22:14 -04:00
parent d7bdaf8eaa
commit a00b1935d7

View File

@ -1239,6 +1239,7 @@ void TrackPanel::OnCaptureKey(wxCommandEvent & event)
const unsigned refreshResult = const unsigned refreshResult =
((TrackPanelCell*)t)->CaptureKey(*kevent, *mViewInfo, this); ((TrackPanelCell*)t)->CaptureKey(*kevent, *mViewInfo, this);
ProcessUIHandleResult(this, mRuler, t, t, refreshResult); ProcessUIHandleResult(this, mRuler, t, t, refreshResult);
event.Skip(kevent->GetSkipped());
} }
else else
event.Skip(); event.Skip();