This commit is contained in:
John Lewin 2018-08-03 07:31:20 -07:00
parent d86a8ff664
commit b17ac901c3

View file

@ -28,12 +28,10 @@ either expressed or implied, of the FreeBSD Project.
*/
using System.Collections.Generic;
using System.Linq;
using MatterHackers.Agg;
using MatterHackers.Agg.Platform;
using MatterHackers.Agg.UI;
using MatterHackers.MatterControl.CustomWidgets;
using MatterHackers.VectorMath;
namespace MatterHackers.MatterControl.SlicerConfiguration
{
@ -48,15 +46,13 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
public override void Initialize(int tabIndex)
{
var column = new FlowLayoutWidget(FlowDirection.TopToBottom)
this.Content = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
Margin = new BorderDouble(20, 0, 0, 0),
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Fit,
};
this.Content = column;
base.Initialize(tabIndex);
}