]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/radiobox.cpp
MOre wxUSE_... fixes
[wxWidgets.git] / src / motif / radiobox.cpp
index d4bb7555f8f808cf9a717265ba2be3935f879819..62fb7e2b3d9c237c800112b22225427bd540b0fa 100644 (file)
@@ -115,8 +115,10 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
     XtSetArg (args[0], XmNorientation, ((style & wxHORIZONTAL) == wxHORIZONTAL ?
                                           XmHORIZONTAL : XmVERTICAL));
     XtSetArg (args[1], XmNnumColumns, m_majorDim);
+    XtSetArg (args[2], XmNadjustLast, False);
 
-    Widget radioBoxWidget = XmCreateRadioBox ((Widget)m_mainWidget, "radioBoxWidget", args, 2);
+    Widget radioBoxWidget =
+        XmCreateRadioBox ((Widget)m_mainWidget, "radioBoxWidget", args, 3);
 
     m_radioButtons.reserve(n);
     m_radioButtonLabels.reserve(n);