From 15f1c9efb6ff226f6c72ebb848c03b738c7f30c0 Mon Sep 17 00:00:00 2001 From: Tyler Anderson Date: Mon, 25 Jul 2016 18:30:35 -0700 Subject: [PATCH] Fixed estimated cost --- PartPreviewWindow/ViewGcodeBasic.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PartPreviewWindow/ViewGcodeBasic.cs b/PartPreviewWindow/ViewGcodeBasic.cs index ac8a11a6a..e2e0a0ad7 100644 --- a/PartPreviewWindow/ViewGcodeBasic.cs +++ b/PartPreviewWindow/ViewGcodeBasic.cs @@ -596,6 +596,8 @@ namespace MatterHackers.MatterControl.PartPreviewWindow costTextWidget.Margin = new BorderDouble(0, 9, 0, 3); estimatedCostInfo.AddChild(costTextWidget); + UpdateEstimatedCost(); + return estimatedCostInfo; }