Add WindowTitle to ISetupWizard
This commit is contained in:
parent
c5038e6772
commit
29812fdf82
7 changed files with 20 additions and 16 deletions
|
|
@ -47,7 +47,8 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
public UnloadFilamentWizard(PrinterConfig printer, int extruderIndex)
|
||||
: base(printer)
|
||||
{
|
||||
windowTitle = $"{ApplicationController.Instance.ProductName} - " + "Unload Filament Wizard".Localize();
|
||||
this.WindowTitle = $"{ApplicationController.Instance.ProductName} - " + "Unload Filament Wizard".Localize();
|
||||
|
||||
pages = this.GetPages();
|
||||
pages.MoveNext();
|
||||
|
||||
|
|
@ -82,7 +83,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
// select the material
|
||||
yield return new SelectMaterialPage(this, title, instructions, "Unload".Localize(), extruderIndex, false, false)
|
||||
{
|
||||
WindowTitle = windowTitle
|
||||
WindowTitle = WindowTitle
|
||||
};
|
||||
|
||||
var theme = ApplicationController.Instance.Theme;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue