Add missing radio button to group.

Fixes: lp:1799654
* https://bugs.launchpad.net/kicad/+bug/1799654
This commit is contained in:
Jeff Young 2018-10-24 13:35:28 +01:00
parent 2701bdbbac
commit f87a22fefb
1 changed files with 6 additions and 4 deletions

View File

@ -254,10 +254,12 @@ void DIALOG_EXCHANGE_FOOTPRINTS::updateMatchModeRadioButtons( wxUpdateUIEvent& )
wxRadioButton* rb_butt_list[] =
{
m_matchCurrentRef, m_matchSpecifiedRef,
m_matchCurrentValue, m_matchCurrentValue,
m_matchSpecifiedValue, m_matchSpecifiedValue,
m_matchSpecifiedID, m_matchSpecifiedID,
m_matchAll,
m_matchCurrentRef,
m_matchSpecifiedRef,
m_matchCurrentValue,
m_matchSpecifiedValue,
m_matchSpecifiedID,
nullptr // end of list
};