Fix missing wxRB_GROUP
Fixes https://gitlab.com/kicad/code/kicad/-/issues/15990
This commit is contained in:
parent
972308b24b
commit
5d5682a225
|
@ -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 );
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue