Fix missing wxRB_GROUP

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15990
This commit is contained in:
Jon Evans 2023-10-31 20:15:32 -04:00
parent 972308b24b
commit 5d5682a225
2 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ PANEL_COMMON_SETTINGS_BASE::PANEL_COMMON_SETTINGS_BASE( wxWindow* parent, wxWind
m_stToolbarIconSize->Wrap( -1 );
bSizerToolbarSize->Add( m_stToolbarIconSize, 0, wxALL, 5 );
m_rbIconSizeSmall = new wxRadioButton( this, wxID_ANY, _("Small"), wxDefaultPosition, wxDefaultSize, 0 );
m_rbIconSizeSmall = new wxRadioButton( this, wxID_ANY, _("Small"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP );
m_rbIconSizeSmall->SetToolTip( _("Use compact icons in the toolbars") );
bSizerToolbarSize->Add( m_rbIconSizeSmall, 0, wxALL, 5 );

View File

@ -1914,7 +1914,7 @@
<property name="resize">Resizable</property>
<property name="show">1</property>
<property name="size"></property>
<property name="style"></property>
<property name="style">wxRB_GROUP</property>
<property name="subclass">; ; forward_declare</property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Use compact icons in the toolbars</property>