# HG changeset patch # User Olaf Wintermann # Date 1763573453 -3600 # Node ID 10a783120051c56cc596918b898004173ce6a967 # Parent d9018dcd4e2d2cd6e56e101a23f272aef4a605fe enable box container spacing (Motif) diff -r d9018dcd4e2d -r 10a783120051 ui/motif/container.c --- a/ui/motif/container.c Wed Nov 19 13:02:55 2025 +0100 +++ b/ui/motif/container.c Wed Nov 19 18:30:53 2025 +0100 @@ -78,9 +78,9 @@ int n = 0; if(orientation == UI_BOX_VERTICAL) { - //XtSetArg(xargs[n], gridRowSpacing, args->spacing); n++; + XtSetArg(xargs[n], gridRowSpacing, args->spacing); n++; } else { - //XtSetArg(xargs[n], gridColumnSpacing, args->spacing); n++; + XtSetArg(xargs[n], gridColumnSpacing, args->spacing); n++; } Widget parent = ui_container_prepare(ctn, &layout, xargs, &n);