From 459244fd37e7d54197262adfddf2df302bba95cf Mon Sep 17 00:00:00 2001 From: MatterHackers Date: Sun, 3 Dec 2023 15:11:22 -0800 Subject: [PATCH] path editor alignment --- .../PartPreviewWindow/View3D/Actions/SheetEditor.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/MatterControlLib/PartPreviewWindow/View3D/Actions/SheetEditor.cs b/MatterControlLib/PartPreviewWindow/View3D/Actions/SheetEditor.cs index e3cf5df13..4ce28067a 100644 --- a/MatterControlLib/PartPreviewWindow/View3D/Actions/SheetEditor.cs +++ b/MatterControlLib/PartPreviewWindow/View3D/Actions/SheetEditor.cs @@ -81,7 +81,10 @@ namespace MatterHackers.MatterControl.DesignTools editSelectionGroup.AddChild(EditSelectedExpression); EditSelectedExpression.ActualTextEditWidget.EditComplete += ActualTextEditWidget_EditComplete1; - gridWidget = new GridWidget(sheetData.Width + 1, sheetData.Height + 1, theme: theme); + gridWidget = new GridWidget(sheetData.Width + 1, sheetData.Height + 1, theme: theme) + { + Margin = new BorderDouble(7, 0), + }; this.AddChild(gridWidget);