mirror of https://github.com/odrling/Aegisub
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
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue