瀏覽代碼

Merge pull request #5059 from gcormier/fixbaby

Set defer delay back to false when exiting babystepping.
Scott Lahteine 8 年之前
父節點
當前提交
0d3fc7dd89
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp 查看文件

@@ -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…
取消
儲存