Drop padding on primary container

This commit is contained in:
John Lewin 2017-09-07 21:01:27 -07:00
parent 73d917d6db
commit 10d4d15cd3

View file

@ -90,10 +90,10 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
pageTopToBottomLayout = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
VAnchor = VAnchor.Top
VAnchor = VAnchor.Top,
Padding = 0
};
pageTopToBottomLayout.AnchorAll();
pageTopToBottomLayout.Padding = new BorderDouble(3, 0);
this.AddChild(pageTopToBottomLayout);
settingsControlBar = new SettingsControlBar(printerConnection)