🎨 Apply F() to E3V2 titles, popups

This commit is contained in:
Scott Lahteine
2021-09-28 05:59:03 -05:00
parent 0309fce1fd
commit 59503c6bbb
7 changed files with 429 additions and 386 deletions

View File

@ -71,7 +71,10 @@ void GcodeSuite::M0_M1() {
else
ExtUI::onUserConfirmRequired_P(GET_TEXT(MSG_USERWAIT));
#elif ENABLED(DWIN_CREALITY_LCD_ENHANCED)
DWIN_Popup_Confirm(ICON_BLTouch, parser.string_arg ?: GET_TEXT(MSG_STOPPED), GET_TEXT(MSG_USERWAIT));
if (parser.string_arg)
DWIN_Popup_Confirm(ICON_BLTouch, parser.string_arg, GET_TEXT_F(MSG_USERWAIT));
else
DWIN_Popup_Confirm(ICON_BLTouch, GET_TEXT_F(MSG_STOPPED), GET_TEXT_F(MSG_USERWAIT));
#else
if (parser.string_arg) {