[2.0.x] Auto-enable DISABLE_REDUCED_ACCURACY_WARNING if HOME_AFTER_DEACTIVATE enabled (#7879)
* Auto-enable DISABLE_REDUCED_ACCURACY_WARNING if HOME_AFTER_DEACTIVATE enabled If HOME_AFTER_DEACTIVATE, there is no need to warn on LCD since printer will home prior to starting print. Saves 60 bytes PROGMEM on AVR with U8g panel. * Reduce lines used * Reduce lines used
This commit is contained in:
parent
f63e546b3e
commit
9d0e4ea3d5
|
@ -430,12 +430,12 @@ FORCE_INLINE void _draw_axis_label(const AxisEnum axis, const char* const pstr,
|
||||||
if (!axis_homed[axis])
|
if (!axis_homed[axis])
|
||||||
u8g.print('?');
|
u8g.print('?');
|
||||||
else {
|
else {
|
||||||
#if DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
|
#if DISABLED(HOME_AFTER_DEACTIVATE) && DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
|
||||||
if (!axis_known_position[axis])
|
if (!axis_known_position[axis])
|
||||||
u8g.print(' ');
|
u8g.print(' ');
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
lcd_printPGM(pstr);
|
lcd_printPGM(pstr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -600,12 +600,12 @@ FORCE_INLINE void _draw_axis_label(const AxisEnum axis, const char* const pstr,
|
||||||
if (!axis_homed[axis])
|
if (!axis_homed[axis])
|
||||||
lcd.write('?');
|
lcd.write('?');
|
||||||
else {
|
else {
|
||||||
#if DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
|
#if DISABLED(HOME_AFTER_DEACTIVATE) && DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
|
||||||
if (!axis_known_position[axis])
|
if (!axis_known_position[axis])
|
||||||
lcd.write(' ');
|
lcd.write(' ');
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
lcd_printPGM(pstr);
|
lcd_printPGM(pstr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue