You did add "LAYOUT_SpaceInner, FALSE," to all your layouts?AmiHyperion wrote:Tried both, same result.
If you did then it's not inter-gadget spacing but spacing between the button text and the 0 pixel wide, BVS_NONE bevel. You can reduce this to it's minimum f.e. by adding "CHILD_WeightedWidth, 0, CHILD_WeightedHeight, 0," after your parent layout like so:
Code: Select all
LAYOUT_AddChild, IIntuition->NewObject(LayoutClass, NULL, /* vertical layout */
LAYOUT_Orientation, LAYOUT_ORIENT_VERT,
LAYOUT_SpaceInner, FALSE,
LAYOUT_AddChild, IIntuition->NewObject(LayoutClass, NULL, /* row 1 */
LAYOUT_Orientation, LAYOUT_ORIENT_HORIZ,
LAYOUT_SpaceInner, FALSE,
/* buttons here */
TAG_END),
LAYOUT_AddChild, IIntuition->NewObject(LayoutClass, NULL, /* row 2 */
LAYOUT_Orientation, LAYOUT_ORIENT_HORIZ,
LAYOUT_SpaceInner, FALSE,
/* buttons here */
TAG_END),
LAYOUT_AddChild, IIntuition->NewObject(LayoutClass, NULL, /* row 3 */
LAYOUT_Orientation, LAYOUT_ORIENT_HORIZ,
LAYOUT_SpaceInner, FALSE,
/* buttons here */
TAG_END),
TAG_END),
CHILD_WeightedWidth, 0,
CHILD_WeightedHeight, 0,