Group DISABLED items

This commit is contained in:
Scott Lahteine
2019-03-17 05:50:06 -05:00
parent 58bca67883
commit b376c7e374
19 changed files with 37 additions and 37 deletions

View File

@ -239,7 +239,7 @@ void menu_bed_leveling() {
const bool is_homed = all_axes_known();
// Auto Home if not using manual probing
#if DISABLED(PROBE_MANUALLY) && DISABLED(MESH_BED_LEVELING)
#if DISABLED(PROBE_MANUALLY, MESH_BED_LEVELING)
if (!is_homed) MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
#endif