From: Mattia Barbon Date: Sun, 16 Nov 2003 11:14:34 +0000 (+0000) Subject: Made element layout consistent with wxMSW/wxGTK when X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/795c00bdccba346945bfea05725ef7050a29ea2a?ds=inline Made element layout consistent with wxMSW/wxGTK when radiobox is wider/taller than necessary. Previously the last element was stretched to fit remaining space. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24573 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/motif/radiobox.cpp b/src/motif/radiobox.cpp index d4bb7555f8..62fb7e2b3d 100644 --- a/src/motif/radiobox.cpp +++ b/src/motif/radiobox.cpp @@ -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);