Skip to content

Commit 28e72c7

Browse files
committed
Fix rebase
1 parent 734f754 commit 28e72c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/gcode/calibrate/M48.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ void GcodeSuite::M48() {
265265
#define LCD_WIDTH MAX_MESSAGE_LENGTH
266266
#endif
267267
if (STATUS_MESSAGE_WIDTH_LCD > 24)
268-
ui.set_status(TS(GET_TEXT_F(MSG_M48_DEVIATION), ':', w_float_t(sigma, 2, 6), F(", "), GET_TEXT_F(MSG_M48_MAX_DELTA), ':', w_float_t(_MAX(mean - min, max - mean), 2, 3)));
268+
ui.set_status_and_level(MString<40>(GET_TEXT_F(MSG_M48_DEVIATION), F(": "), w_float_t(sigma, 2, 6), F(", "), GET_TEXT(MSG_M48_MAX_DELTA), F(": "), w_float_t(_MAX(mean - min, max - mean), 2, 3)));
269269
else
270-
ui.set_status(TS(GET_TEXT_F(MSG_M48_DEVIATION), ':', w_float_t(sigma, 2, 6)));
270+
ui.set_status_and_level(MString<30>(GET_TEXT_F(MSG_M48_DEVIATION), F(": "), w_float_t(sigma, 2, 6)));
271271
#endif
272272
}
273273

0 commit comments

Comments
 (0)