From: Václav Slavík Date: Wed, 7 Mar 2012 16:15:11 +0000 (+0000) Subject: Don't eat unhandled events in wxHtmlWindow::OnKeyUp(). X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fca74306c5369d8a83af992c9a6e481073688423 Don't eat unhandled events in wxHtmlWindow::OnKeyUp(). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/htmlwin.cpp b/src/html/htmlwin.cpp index 8be6354eb1..7496fa4fd1 100644 --- a/src/html/htmlwin.cpp +++ b/src/html/htmlwin.cpp @@ -1525,6 +1525,10 @@ void wxHtmlWindow::OnKeyUp(wxKeyEvent& event) GetEventHandler()->ProcessEvent(evt); } + else + { + event.Skip(); + } } void wxHtmlWindow::OnCopy(wxCommandEvent& WXUNUSED(event))