From 85fc6a221cdaa85d9fad01091a58543ed2fd1c9e Mon Sep 17 00:00:00 2001 From: larsbrubaker Date: Tue, 22 Jul 2014 16:29:35 -0700 Subject: [PATCH] Hide the progress bar when done loading. --- PartPreviewWindow/ViewGcodeBasic.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PartPreviewWindow/ViewGcodeBasic.cs b/PartPreviewWindow/ViewGcodeBasic.cs index 21089232e..97bc1b3ee 100644 --- a/PartPreviewWindow/ViewGcodeBasic.cs +++ b/PartPreviewWindow/ViewGcodeBasic.cs @@ -719,6 +719,8 @@ namespace MatterHackers.MatterControl.PartPreviewWindow gcodeViewWidget.ActiveLayerIndex = gcodeViewWidget.ActiveLayerIndex - 1; BoundsChanged += new EventHandler(PartPreviewGCode_BoundsChanged); + + meshViewerWidget.partProcessingInfo.Visible = false; } }