Require window title to show, use theme colors

This commit is contained in:
jlewin 2019-03-20 16:27:39 -07:00
parent 2c8b06203c
commit 499d46a686
3 changed files with 8 additions and 5 deletions

View file

@ -73,7 +73,7 @@ namespace MatterHackers.MatterControl
}
}
public StagedSetupWizard(IEnumerable<ISetupWizard> stages, Func<DialogPage> homePageGenerator)
public StagedSetupWizard(string title, IEnumerable<ISetupWizard> stages, Func<DialogPage> homePageGenerator)
{
this.stages = stages;
this.homePageGenerator = homePageGenerator;
@ -121,7 +121,7 @@ namespace MatterHackers.MatterControl
VAnchor = VAnchor.Stretch
});
this.Title = activeStage.Title;
this.Title = title;
this.Size = new Vector2(1200, 700);
this.AddChild(row);
}