Browse Source

prevent steppers from turning off during manual probes

Roxy-3D 7 years ago
parent
commit
26dc594ebb
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp

+ 1
- 0
Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp View File

@@ -775,6 +775,7 @@
775 775
       wait_for_release();
776 776
       while (!is_lcd_clicked()) {
777 777
         idle();
778
+        gcode.refresh_cmd_timeout();
778 779
         if (encoder_diff) {
779 780
           do_blocking_move_to_z(current_position[Z_AXIS] + float(encoder_diff) * multiplier);
780 781
           encoder_diff = 0;

Loading…
Cancel
Save