diff --git a/src/osx/radiobox_osx.cpp b/src/osx/radiobox_osx.cpp index 50dbb33b2f..2a7b33c827 100644 --- a/src/osx/radiobox_osx.cpp +++ b/src/osx/radiobox_osx.cpp @@ -102,6 +102,9 @@ bool wxRadioBox::Create( wxWindow *parent, if ( !wxControl::Create( parent, id, pos, size, style, val, name ) ) return false; + // The radio box itself never accepts focus, only its child buttons do. + m_container.DisableSelfFocus(); + // during construction we must keep this at 0, otherwise GetBestSize fails m_noItems = 0; m_noRowsOrCols = majorDim;