]> git.saurik.com Git - wxWidgets.git/commitdiff
calling SetFocus() in OnMouseUp() is unnecessary if we skip the event in OnMouseDown()
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Oct 2007 11:35:19 +0000 (11:35 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Oct 2007 11:35:19 +0000 (11:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49329 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/htmlwin.cpp

index 8ac31d319f9a20ab5790edfced86f9ff38279e5e..c437f707099582fc1ae0cac57d5b1fc32ece36a3 100644 (file)
@@ -1136,9 +1136,10 @@ void wxHtmlWindow::OnMouseDown(wxMouseEvent& event)
             CaptureMouse();
         }
     }
-#else
-    wxUnusedVar(event);
 #endif // wxUSE_CLIPBOARD
+
+    // in any case, let the default handler set focus to this window
+    event.Skip();
 }
 
 void wxHtmlWindow::OnMouseUp(wxMouseEvent& event)
@@ -1163,8 +1164,6 @@ void wxHtmlWindow::OnMouseUp(wxMouseEvent& event)
     }
 #endif // wxUSE_CLIPBOARD
 
-    SetFocus();
-
     wxPoint pos = CalcUnscrolledPosition(event.GetPosition());
     wxHtmlWindowMouseHelper::HandleMouseClick(m_Cell, pos, event);
 }