From 265fa90ff84a022a52d76e9904dfd4d685296505 Mon Sep 17 00:00:00 2001 From: jlewin Date: Thu, 25 Apr 2019 12:25:43 -0700 Subject: [PATCH] Inactive stages should be ignored --- .../PrinterControls/ControlWidgets/PrinterCalibrationWizard.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MatterControlLib/PrinterControls/ControlWidgets/PrinterCalibrationWizard.cs b/MatterControlLib/PrinterControls/ControlWidgets/PrinterCalibrationWizard.cs index 93370bc3a..50916f3b2 100644 --- a/MatterControlLib/PrinterControls/ControlWidgets/PrinterCalibrationWizard.cs +++ b/MatterControlLib/PrinterControls/ControlWidgets/PrinterCalibrationWizard.cs @@ -68,7 +68,7 @@ namespace MatterHackers.MatterControl textColor: theme.TextColor)); contentRow.BackgroundColor = Color.Transparent; - foreach (var stage in this.Stages) + foreach (var stage in this.Stages.Where(s => s.Enabled && s.Visible)) { var widget = new GuiWidget();