]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/radiobut.mm
unicode fixes
[wxWidgets.git] / src / cocoa / radiobut.mm
index a4d9d46d5e47d987abdb770ed7f9fffb3a0ec03c..29e001cadff9492800181b3c95ea374b96be322a 100644 (file)
@@ -71,6 +71,9 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID winid,
     [m_cocoaNSView release];
     [GetNSButton() setButtonType: NSRadioButton];
     [GetNSButton() setTitle:wxNSStringWithWxString(label)];
+    // If it's the first in a group, it should be selected
+    if(style&wxRB_GROUP)
+        [GetNSButton() setState: NSOnState];
     [GetNSControl() sizeToFit];
 
     if(m_parent)