Revert "Skip mouse button release events in wxGenericListCtrl."

This reverts r76824 as it is not necessary any longer, the fix in the previous
commit takes care of this problem more generally.

See #16365.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77893 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-09-27 16:12:45 +00:00
parent 42fdb98f74
commit 445e2c32e2

View File

@@ -2437,9 +2437,6 @@ void wxListMainWindow::OnMouse( wxMouseEvent &event )
{ {
// reset the selection and bail out // reset the selection and bail out
HighlightAll(false); HighlightAll(false);
if ( event.LeftUp() )
event.Skip();
} }
return; return;
@@ -2515,8 +2512,6 @@ void wxListMainWindow::OnMouse( wxMouseEvent &event )
} }
m_lineSelectSingleOnUp = (size_t)-1; m_lineSelectSingleOnUp = (size_t)-1;
event.Skip();
} }
else else
{ {