Fix automation test issues

This commit is contained in:
jlewin 2019-05-09 14:34:55 -07:00
parent 568501cb29
commit 40721ba1c2
5 changed files with 14 additions and 11 deletions

View file

@ -162,9 +162,9 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
"Print Leveling measures the plane of the bed.".Localize(),
"This data compensates for machine misalignment and bed distortion, and ensures good first layer adhesion.".Localize(),
"Click 'Next' to continue.".Localize()))
{
WindowTitle = Title
};
{
WindowTitle = Title,
};
// Switch to raw mode and construct leveling structures
this.Initialize();

View file

@ -115,9 +115,9 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
"Probe Calibration measures the distance between the probe and the tip of the nozzle.".Localize(),
"This data is required for software print leveling and ensures good first layer adhesion.".Localize(),
"Click 'Next' to continue.".Localize()))
{
WindowTitle = Title
};
{
WindowTitle = Title,
};
// Initialize - turn off print leveling
printer.Connection.AllowLeveling = false;

View file

@ -120,9 +120,9 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
"Nozzle Calibration measures the distance between hotends.".Localize(),
"This data improves the alignment of dual extrusion prints.".Localize(),
"Click 'Next' to continue.".Localize()))
{
WindowTitle = Title
};
{
WindowTitle = Title,
};
yield return new XyCalibrationSelectPage(this);