Only compare XYZ to check motion

This commit is contained in:
Scott Lahteine
2017-12-10 22:57:24 -06:00
parent f53e0702fc
commit 204199e1ce
3 changed files with 3 additions and 12 deletions

View File

@ -149,10 +149,7 @@ void set_bed_leveling_enabled(const bool enable/*=true*/) {
planner.set_z_fade_height(zfh);
if (level_active) {
const float oldpos[XYZE] = {
current_position[X_AXIS], current_position[Y_AXIS],
current_position[Z_AXIS], current_position[E_AXIS]
};
const float oldpos[] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
#if ENABLED(AUTO_BED_LEVELING_UBL)
set_bed_leveling_enabled(true); // turn back on after changing fade height
#else