From: Václav Slavík Date: Mon, 9 Sep 2002 22:32:19 +0000 (+0000) Subject: applied patch #606835, bugfix to wxHtmlHelpFrame::OnActivate X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fbd90401960caefef23b4fafc34e36bf7969363e applied patch #606835, bugfix to wxHtmlHelpFrame::OnActivate git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17103 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/helpfrm.cpp b/src/html/helpfrm.cpp index 40ce5865f3..4e1c99dcc4 100644 --- a/src/html/helpfrm.cpp +++ b/src/html/helpfrm.cpp @@ -1122,6 +1122,8 @@ void wxHtmlHelpFrame::OnActivate(wxActivateEvent& event) // wxHTML for context sensitive help systems if (event.GetActive() && m_HtmlWin) m_HtmlWin->SetFocus(); + + event.Skip(); } void wxHtmlHelpFrame::OnToolbar(wxCommandEvent& event)