Also update focus rect when changing selection in single selection mode, fixes #11332
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
7d5d2f237a
commit
bc6ca1a9e6
@ -4106,7 +4106,12 @@ void wxDataViewCtrl::Select( const wxDataViewItem & item )
|
||||
// Unselect all rows before select another in the single select mode
|
||||
if (m_clientArea->IsSingleSel())
|
||||
m_clientArea->SelectAllRows(false);
|
||||
|
||||
m_clientArea->SelectRow(row, true);
|
||||
|
||||
// Also reset focus
|
||||
if (m_clientArea->IsSingleSel())
|
||||
m_clientArea->ChangeCurrentRow( row );
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user