Add mechanism to finish stage and move to next best action

This commit is contained in:
jlewin 2019-03-20 15:41:13 -07:00
parent c5edf5c761
commit 2c13c1d4b4
2 changed files with 18 additions and 1 deletions

View file

@ -113,7 +113,10 @@ namespace MatterHackers.MatterControl
doneButton.Click += (s, e) =>
{
this.DialogWindow.CloseOnIdle();
if (this.DialogWindow is StagedSetupWizard setupWindow)
{
setupWindow.FinishWizard();
}
};
this.AddPageAction(doneButton);