Only advance to next unfinished stage, if started in that mode

- Issue MatterHackers/MCCentral#5496
Clicking 'already loaded' on extruder 2 does not make xy calibration available
This commit is contained in:
jlewin 2019-05-14 17:45:27 -07:00
parent 415d5206e7
commit 60beceea6d
5 changed files with 10 additions and 1 deletions

View file

@ -125,7 +125,8 @@ namespace MatterHackers.MatterControl
protected void FinishWizard()
{
if (this.DialogWindow is StagedSetupWindow setupWindow)
if (this.DialogWindow is StagedSetupWindow setupWindow
&& setupWindow.AutoAdvance)
{
setupWindow.NextIncompleteStage();
}