From e366d55bc2ea9471397c1f414128de5e8171e660 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Tue, 19 Jun 2018 21:48:28 -0500
Subject: [PATCH] Don't reset stepper timeout for all g-codes

---
 Marlin/src/gcode/gcode.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/Marlin/src/gcode/gcode.cpp b/Marlin/src/gcode/gcode.cpp
index 377612dc59..7e8d33a38f 100644
--- a/Marlin/src/gcode/gcode.cpp
+++ b/Marlin/src/gcode/gcode.cpp
@@ -695,8 +695,6 @@ void GcodeSuite::process_next_command() {
     #endif
   }
 
-  reset_stepper_timeout(); // Keep steppers powered
-
   // Parse the next command in the queue
   parser.parse(current_command);
   process_parsed_command();