From 5589b4e737be5c323847570bd2cdfbd710ca472d Mon Sep 17 00:00:00 2001 From: larsbrubaker Date: Thu, 3 Jul 2014 11:56:07 -0700 Subject: [PATCH] Don't show selection control on gcode view. --- PartPreviewWindow/ViewGcodeBasic.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PartPreviewWindow/ViewGcodeBasic.cs b/PartPreviewWindow/ViewGcodeBasic.cs index 264bd4334..6e55406cb 100644 --- a/PartPreviewWindow/ViewGcodeBasic.cs +++ b/PartPreviewWindow/ViewGcodeBasic.cs @@ -209,6 +209,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow viewControls2D = new ViewControls2D(); AddChild(viewControls2D); viewControls3D = new ViewControls3D(meshViewerWidget); + viewControls3D.PartSelectVisible = false; AddChild(viewControls3D); viewControls3D.rotateButton.ClickButton(null); viewControls3D.Visible = false;