From 983434a6c39885610d3d7269ec4d8f807b18c7a3 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Fri, 9 Oct 2009 22:27:27 +0000 Subject: [PATCH] Make the video slider forward unprocessed key events to the video display. Originally committed to SVN as r3672. --- aegisub/src/video_slider.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aegisub/src/video_slider.cpp b/aegisub/src/video_slider.cpp index b5ffe7d7a..647e52860 100644 --- a/aegisub/src/video_slider.cpp +++ b/aegisub/src/video_slider.cpp @@ -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(); }