Put in tracking if the xy calibration has happened

This commit is contained in:
Lars Brubaker 2019-03-20 10:33:55 -07:00
parent 6123178dde
commit 457a63432a
7 changed files with 138 additions and 115 deletions

View file

@ -51,7 +51,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
public static bool NeedsToBeRun(PrinterConfig printer)
{
// we have a probe that we are using and we have not done leveling yet
return UsingZProbe(printer) && !printer.Settings.GetValue<bool>(SettingsKey.probe_has_been_calibrated);
return UsingZProbe(printer) && !printer.Settings.GetValue<bool>(SettingsKey.xy_offsets_have_been_calibrated);
}
public override void Dispose()