From 80071ea216036673e3dc55f819cfa25f60746aaa Mon Sep 17 00:00:00 2001 From: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com> Date: Mon, 6 May 2024 15:40:33 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20missing=20EXTENSIBLE=5FUI?= =?UTF-8?q?=20include=20(#27021)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: ellensp <530024+ellensp@users.noreply.github.com> --- Marlin/src/feature/powerloss.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Marlin/src/feature/powerloss.cpp b/Marlin/src/feature/powerloss.cpp index 86e6b780bd..69e23f4a32 100644 --- a/Marlin/src/feature/powerloss.cpp +++ b/Marlin/src/feature/powerloss.cpp @@ -31,6 +31,10 @@ #include "powerloss.h" #include "../core/macros.h" +#if ENABLED(EXTENSIBLE_UI) + #include "../lcd/extui/ui_api.h" +#endif + bool PrintJobRecovery::enabled; // Initialized by settings.load() MediaFile PrintJobRecovery::file;