Skip to content

Commit

Permalink
🩹 Fix 'G29 J' status message (MarlinFirmware#25677)
Browse files Browse the repository at this point in the history
  • Loading branch information
XDA-Bam authored and Tracy Spiva committed May 25, 2023
1 parent 406f999 commit 5394cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1499,7 +1499,7 @@ void unified_bed_leveling::smart_fill_mesh() {

LOOP_L_N(i, 3) {
SERIAL_ECHOLNPGM("Tilting mesh (", i + 1, "/3)");
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/3"), i + 1, GET_TEXT(MSG_LCD_TILTING_MESH)));
TERN_(HAS_STATUS_MESSAGE, ui.status_printf(0, F(S_FMT " %i/3"), GET_TEXT(MSG_LCD_TILTING_MESH), i + 1));

measured_z = probe.probe_at_point(points[i], i < 2 ? PROBE_PT_RAISE : PROBE_PT_LAST_STOW, param.V_verbosity);
if ((abort_flag = isnan(measured_z))) break;
Expand Down

0 comments on commit 5394cd8

Please sign in to comment.