Fixed the print leveling bug

This commit is contained in:
Lars Brubaker 2017-01-10 17:30:27 -08:00
parent 83832c77e1
commit 89cd8ebb3e
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
public PrinterMove LastDestination { get { return lastDestination; } }
public static bool Enabled { get; set; }
public static bool Enabled { get; set; } = true;
public override string ReadLine()
{

View file

@ -105,7 +105,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
// assert the leveling is working
testRunner.WaitForName("Resume Button", 30);
Assert.Greater(emulator.XPosition, 5);
Assert.Greater(emulator.ZPosition, 5);
testRunner.ClickByName("Cancel Print Button", 1);
}