]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlwin.cpp
calling SetFocus() in OnMouseUp() is unnecessary if we skip the event in OnMouseDown()
[wxWidgets.git] / 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);
 }