diff --git a/Marlin/stepper.cpp b/Marlin/stepper.cpp
index 14b1ebc7d210864dd089e768f04138421585bbd8..9493cedf1e612ee34f9b676293f85dba8a2f31ea 100644
--- a/Marlin/stepper.cpp
+++ b/Marlin/stepper.cpp
@@ -62,7 +62,7 @@ Stepper stepper; // Singleton
 
 // public:
 
-#if ENABLED(AUTO_BED_LEVELING_UBL)
+#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTIPANEL)
   extern bool ubl_lcd_map_control;
 #endif
 
@@ -1285,7 +1285,7 @@ void Stepper::finish_and_disable() {
 }
 
 void Stepper::quick_stop() {
-  #if ENABLED(AUTO_BED_LEVELING_UBL)
+  #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTIPANEL)
     if (!ubl_lcd_map_control)
       cleaning_buffer_counter = 5000;
   #else