Browse Source

fix for #8669 (#8679)

* fix for #8669

* Update G28.cpp
pull/1/head
revilor 7 years ago
committed by Scott Lahteine
parent
commit
9e3fbcf35c
  1. 4
      Marlin/src/gcode/calibrate/G28.cpp

4
Marlin/src/gcode/calibrate/G28.cpp

@ -205,7 +205,7 @@ void GcodeSuite::G28(const bool always_home_all) {
#endif
}
#else
#endif
if (home_all || homeX || homeY) {
// Raise Z before homing any other axes and z is not already high enough (never lower z)
@ -221,8 +221,6 @@ void GcodeSuite::G28(const bool always_home_all) {
}
}
#endif
#if ENABLED(QUICK_HOME)
if (home_all || (homeX && homeY)) quick_home_xy();

Loading…
Cancel
Save