|
@@ -1331,11 +1331,12 @@ void lcd_quick_feedback(const bool clear_buttons) {
|
1331
|
1331
|
}
|
1332
|
1332
|
if (lcdDrawUpdate) {
|
1333
|
1333
|
#if ENABLED(BABYSTEP_HOTEND_Z_OFFSET)
|
1334
|
|
- if (do_probe)
|
1335
|
|
- lcd_implementation_drawedit(PSTR(MSG_ZPROBE_ZOFFSET), ftostr43sign(zprobe_zoffset));
|
1336
|
|
- else
|
|
1334
|
+ if (!do_probe)
|
1337
|
1335
|
lcd_implementation_drawedit(PSTR(MSG_IDEX_Z_OFFSET), ftostr43sign(hotend_offset[Z_AXIS][active_extruder]));
|
|
1336
|
+ else
|
1338
|
1337
|
#endif
|
|
1338
|
+ lcd_implementation_drawedit(PSTR(MSG_ZPROBE_ZOFFSET), ftostr43sign(zprobe_zoffset));
|
|
1339
|
+
|
1339
|
1340
|
#if ENABLED(BABYSTEP_ZPROBE_GFX_OVERLAY)
|
1340
|
1341
|
if (do_probe) _lcd_zoffset_overlay_gfx(zprobe_zoffset);
|
1341
|
1342
|
#endif
|