Browse Source

Don't throw away the bed level matrix on G28

pull/1/head
Scott Lahteine 8 years ago
parent
commit
d04258753b
  1. 6
      Marlin/Marlin_main.cpp

6
Marlin/Marlin_main.cpp

@ -3430,9 +3430,9 @@ inline void gcode_G28() {
// Wait for planner moves to finish!
stepper.synchronize();
// For auto bed leveling, clear the level matrix
#if HAS_ABL
reset_bed_level();
// Disable the leveling matrix before homing
#if PLANNER_LEVELING
set_bed_leveling_enabled(false);
#endif
// Always home with tool 0 active

Loading…
Cancel
Save