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();