Browse Source

Merge pull request #5059 from gcormier/fixbaby

Set defer delay back to false when exiting babystepping.
Scott Lahteine 7 years ago
parent
commit
0d3fc7dd89
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp View File

@@ -671,7 +671,7 @@ void kill_screen(const char* lcd_msg) {
671 671
     long babysteps_done = 0;
672 672
 
673 673
     static void _lcd_babystep(const AxisEnum axis, const char* msg) {
674
-      if (LCD_CLICKED) { lcd_goto_previous_menu(true); return; }
674
+      if (LCD_CLICKED) { defer_return_to_status = false; lcd_goto_previous_menu(true); return; }
675 675
       ENCODER_DIRECTION_NORMAL();
676 676
       if (encoderPosition) {
677 677
         int babystep_increment = (int32_t)encoderPosition * BABYSTEP_MULTIPLICATOR;

Loading…
Cancel
Save