UBL Menu Updates (#6751)

Things should be pretty stable for a while.   
But it wouldn't surprise me if the Delta people have a need for a few special commands.
This commit is contained in:
Tannoo
2017-05-16 07:45:31 -06:00
committed by Roxy-3D
parent 0fef9a2983
commit 0cd398c25d
2 changed files with 22 additions and 20 deletions

View File

@ -318,8 +318,11 @@
}
// Don't allow auto-leveling without homing first
if (axis_unhomed_error())
home_all_axes();
if (axis_unhomed_error()) {
if (code_seen('P') && !code_seen('P6') || code_seen('J')) {
home_all_axes();
}
}
if (g29_parameter_parsing()) return; // abort if parsing the simple parameters causes a problem,
@ -528,7 +531,6 @@
case 6: ubl.shift_mesh_height(); break;
}
}
//