Scott Lahteine 7 years ago
parent
commit
34253497d4
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      Marlin/ultralcd.cpp

+ 1
- 3
Marlin/ultralcd.cpp View File

@@ -785,9 +785,7 @@ void kill_screen(const char* lcd_msg) {
785 785
         babysteps_done += babystep_increment;
786 786
       }
787 787
       if (lcdDrawUpdate)
788
-        lcd_implementation_drawedit(msg, ftostr43sign(
789
-          ((1000 * babysteps_done) * planner.steps_to_mm[axis]) * 0.001f
790
-        ));
788
+        lcd_implementation_drawedit(msg, ftostr43sign(planner.steps_to_mm[axis] * babysteps_done));
791 789
     }
792 790
 
793 791
     #if ENABLED(BABYSTEP_XY)

Loading…
Cancel
Save