Change WindowTitle to Title - simple summary of task at hand

This commit is contained in:
jlewin 2019-03-19 18:14:03 -07:00
parent 1346d83e19
commit 4f0b6b0ba9
8 changed files with 15 additions and 15 deletions

View file

@ -47,7 +47,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
public UnloadFilamentWizard(PrinterConfig printer, int extruderIndex)
: base(printer)
{
this.WindowTitle = $"{ApplicationController.Instance.ProductName} - " + "Unload Filament Wizard".Localize();
this.Title = "Unload Filament".Localize();
this.extruderIndex = extruderIndex;
pages = this.GetPages();
@ -75,7 +75,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
// select the material
yield return new SelectMaterialPage(this, title, instructions, "Unload".Localize(), extruderIndex, false, false)
{
WindowTitle = WindowTitle
WindowTitle = Title
};
var theme = ApplicationController.Instance.Theme;