Highlight the first choice in rescue dialog

Fixes: lp:1455970
* https://bugs.launchpad.net/kicad/+bug/1455970
This commit is contained in:
Chris Pavlina
2017-03-27 09:20:28 -04:00
parent 63569551a4
commit 82d7a4e61e
+6
View File
@@ -136,6 +136,12 @@ void DIALOG_RESCUE_EACH::PopulateConflictList()
m_ListOfConflicts->AppendItem( data );
}
if( !m_Rescuer->m_all_candidates.empty() )
{
// Select the first choice
m_ListOfConflicts->SelectRow( 0 );
}
}