From 34ae76025eb7f481a5b6e8e43fe77d79a0807127 Mon Sep 17 00:00:00 2001
From: InsanityAutomation
 <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue, 28 May 2019 22:36:14 -0400
Subject: [PATCH] Clear Pausing message after M600 park (#14171)

---
 Marlin/src/feature/pause.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Marlin/src/feature/pause.cpp b/Marlin/src/feature/pause.cpp
index 4ebc41028c..28f2a9fd00 100644
--- a/Marlin/src/feature/pause.cpp
+++ b/Marlin/src/feature/pause.cpp
@@ -681,7 +681,8 @@ void resume_print(const float &slow_load_length/*=0*/, const float &fast_load_le
   // Resume the print job timer if it was running
   if (print_job_timer.isPaused()) print_job_timer.start();
 
-  #if HAS_LCD_MENU
+  #if HAS_DISPLAY
+    ui.reset_status();
     ui.return_to_status();
   #endif
 }
-- 
GitLab