From 68372c0c0e1dd251a2d4b25fb6237bc9f4030d7c Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Sun, 15 Jan 2023 18:25:15 +0100 Subject: [PATCH] wizard: Do no set "Self test OK" as an alert message Alert messages are intended to persist above "info" messages, thus preventing further calibration status updates to be shown (such as thermal model calibration). Just set the message as a regular status message. Fixes #3892 --- Firmware/ultralcd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp index e5abd8a2b..1fea31bc0 100755 --- a/Firmware/ultralcd.cpp +++ b/Firmware/ultralcd.cpp @@ -6670,7 +6670,7 @@ bool lcd_selftest() if (_result) { - LCD_ALERTMESSAGERPGM(_i("Self test OK"));////MSG_SELFTEST_OK c=20 + lcd_setstatuspgm(_i("Self test OK"));////MSG_SELFTEST_OK c=20 calibration_status_set(CALIBRATION_STATUS_SELFTEST); } else