Inactive stages should be ignored
This commit is contained in:
parent
0434ec6ce8
commit
265fa90ff8
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue