Skip to content
Snippets Groups Projects
Commit 1c3d49af authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Fix G28 with Z_AFTER_PROBING

Fix #10476
parent b6747c74
Branches
Tags
No related merge requests found
...@@ -311,10 +311,12 @@ void GcodeSuite::G28(const bool always_home_all) { ...@@ -311,10 +311,12 @@ void GcodeSuite::G28(const bool always_home_all) {
#else #else
HOMEAXIS(Z); HOMEAXIS(Z);
#endif #endif
} // home_all || homeZ
#if HOMING_Z_WITH_PROBE && Z_AFTER_PROBING #if HOMING_Z_WITH_PROBE && Z_AFTER_PROBING
move_z_after_probing(); move_z_after_probing();
#endif #endif
} // home_all || homeZ
#endif // Z_HOME_DIR < 0 #endif // Z_HOME_DIR < 0
SYNC_PLAN_POSITION_KINEMATIC(); SYNC_PLAN_POSITION_KINEMATIC();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment