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
This commit is contained in:
Robert Roebling
2009-11-16 18:39:32 +00:00
parent c32eeaccc3
commit de67922eaa

View File

@@ -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 );
}
}