From c4217744224bf91b7f1cb5b63c58d287d75742bf Mon Sep 17 00:00:00 2001
From: daid303 <daid303@gmail.com>
Date: Wed, 5 Dec 2012 19:32:02 +0100
Subject: [PATCH] The Partial release message (which does not really tell you
 anything) overwrites the final print time on the LCD, which is a real shame.
 So I removed the message.

---
 Marlin/Marlin_main.cpp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp
index 1dfcc40ed1..7cc574962a 100644
--- a/Marlin/Marlin_main.cpp
+++ b/Marlin/Marlin_main.cpp
@@ -146,7 +146,7 @@ CardReader card;
 #endif
 float homing_feedrate[] = HOMING_FEEDRATE;
 bool axis_relative_modes[] = AXIS_RELATIVE_MODES;
-int feedmultiply=100; //100->1 200->2
+int feedmultiply=100; //100->1 200->2
 bool feedmultiplychanged;
 int saved_feedmultiply;
 int extrudemultiply=100; //100->1 200->2
@@ -1188,7 +1188,6 @@ void process_commands()
               disable_e2();
             }
           #endif 
-          LCD_MESSAGEPGM(MSG_PART_RELEASE);
         }
       }
       break;
@@ -1371,7 +1370,7 @@ void process_commands()
     {
       if(code_seen('S')) 
       {
-        feedmultiply = code_value() ;
+        feedmultiply = code_value() ;
         feedmultiplychanged = true;
       }
     }
-- 
GitLab