Make the video slider forward unprocessed key events to the video display.
Originally committed to SVN as r3672.
This commit is contained in:
parent
36386e74fc
commit
983434a6c3
1 changed files with 6 additions and 0 deletions
|
@ -407,6 +407,12 @@ void VideoSlider::OnKeyDown(wxKeyEvent &event) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Forward other keys to video display
|
||||||
|
if (Display) {
|
||||||
|
Display->GetEventHandler()->ProcessEvent(event);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue