Radiobutton groups get vertical by default so no spaces

Fixes https://gitlab.com/kicad/code/kicad/-/issues/21496
This commit is contained in:
Seth Hillbrand 2025-08-18 14:01:31 -07:00
parent 34a73a3d77
commit c51d26e70a

View File

@ -33,7 +33,7 @@ public:
{
// Radio buttons are only grouped if they are consecutive. Since we want padding, we need to
// Add padding to the first radio button
m_addGlobalTableEntry = customizer.AddRadioButton( _( "Add new library to global library table" ) + wxS( " " ) );
m_addGlobalTableEntry = customizer.AddRadioButton( _( "Add new library to global library table" ) );
m_addProjectTableEntry = customizer.AddRadioButton( _( "Add new library to project library table" ) );
if( m_useGlobalTable )