This path select next item in "Component library files" after deleted

item.
This commit is contained in:
Yury Khalyavin 2010-07-20 12:05:11 -05:00 committed by Dick Hollenbeck
parent 2fb1de809f
commit 4fc3e40712
1 changed files with 9 additions and 0 deletions

View File

@ -272,6 +272,15 @@ void DIALOG_EESCHEMA_CONFIG::OnRemoveLibClick( wxCommandEvent& event )
m_ListLibr->Delete(selections[ii] );
m_LibListChanged = TRUE;
}
// Select next item after deleted in m_ListLibr
if( m_ListLibr->GetCount() > 0 && selections.GetCount() > 0 )
{
int pos = selections[selections.GetCount()-1];
if( pos == m_ListLibr->GetCount() )
pos = m_ListLibr->GetCount() - 1;
m_ListLibr->SetSelection( pos );
}
}