From: Robert Roebling Date: Mon, 16 Nov 2009 18:39:32 +0000 (+0000) Subject: Always set focus to the item selected using Select() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/de67922eaaf69aee61a3bda72e773ed0ac8b691b Always set focus to the item selected using Select() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62666 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/datavgen.cpp b/src/generic/datavgen.cpp index 3a929e97fc..5c39027e6b 100644 --- a/src/generic/datavgen.cpp +++ b/src/generic/datavgen.cpp @@ -4109,9 +4109,8 @@ void wxDataViewCtrl::Select( const wxDataViewItem & item ) m_clientArea->SelectRow(row, true); - // Also reset focus - if (m_clientArea->IsSingleSel()) - m_clientArea->ChangeCurrentRow( row ); + // Also set focus to the selected item + m_clientArea->ChangeCurrentRow( row ); } }