From: Vadim Zeitlin Date: Tue, 28 May 2002 16:30:24 +0000 (+0000) Subject: unselected the current item when unfocusing it in a single selection list control... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/943f6ad3d6962d780b5b022a7f97d45d34f14def unselected the current item when unfocusing it in a single selection list control (patch 540818) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15697 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index 2fee597386..28853c64c4 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -3772,6 +3772,14 @@ void wxListMainWindow::SetItemState( long litem, long state, long stateMask ) { ResetCurrent(); + if ( IsSingleSel() ) + { + // we must unselect the old current item as well or we + // might end up with more than one selected item in a + // single selection control + HighlightLine(oldCurrent, FALSE); + } + RefreshLine( oldCurrent ); } }