From dabcd6590350a3096309647cc51bd289fbc4554a Mon Sep 17 00:00:00 2001 From: ellensp <530024+ellensp@users.noreply.github.com> Date: Wed, 29 Nov 2023 11:23:18 +1300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20Fix=20ProUI=20hostui.notify('fin?= =?UTF-8?q?ished')=20(#26478)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/lcd/e3v2/proui/dwin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/lcd/e3v2/proui/dwin.cpp b/Marlin/src/lcd/e3v2/proui/dwin.cpp index 366ecffbd9..8d4aa9106b 100644 --- a/Marlin/src/lcd/e3v2/proui/dwin.cpp +++ b/Marlin/src/lcd/e3v2/proui/dwin.cpp @@ -1722,7 +1722,7 @@ void dwinPrintAborted() { ); } #endif - hostui.notify("Print Aborted"); + TERN_(HOST_PROMPT_SUPPORT, hostui.notify(GET_TEXT_F(MSG_PRINT_ABORTED))); dwinPrintFinished(); }