deselect the current selection when the user clicks outside of any item

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-03-04 20:42:54 +00:00
parent 5b7df27e4c
commit 9a6a4f6d57

View File

@ -2949,7 +2949,8 @@ void wxListMainWindow::OnMouse( wxMouseEvent &event )
if ( !hitResult )
{
// outside of any item
// outside of any item, reset the selection and bail out
HighlightAll(false);
return;
}