Make the video slider forward unprocessed key events to the video display.

Originally committed to SVN as r3672.
This commit is contained in:
Thomas Goyne 2009-10-09 22:27:27 +00:00
parent 36386e74fc
commit 983434a6c3

View file

@ -407,6 +407,12 @@ void VideoSlider::OnKeyDown(wxKeyEvent &event) {
return;
}
// Forward other keys to video display
if (Display) {
Display->GetEventHandler()->ProcessEvent(event);
return;
}
event.Skip();
}