|
@@ -460,6 +460,7 @@ static void lcd_move_x()
|
460
|
460
|
{
|
461
|
461
|
if (encoderPosition != 0)
|
462
|
462
|
{
|
|
463
|
+ refresh_cmd_timeout();
|
463
|
464
|
current_position[X_AXIS] += float((int)encoderPosition) * move_menu_scale;
|
464
|
465
|
if (min_software_endstops && current_position[X_AXIS] < X_MIN_POS)
|
465
|
466
|
current_position[X_AXIS] = X_MIN_POS;
|
|
@@ -489,6 +490,7 @@ static void lcd_move_y()
|
489
|
490
|
{
|
490
|
491
|
if (encoderPosition != 0)
|
491
|
492
|
{
|
|
493
|
+ refresh_cmd_timeout();
|
492
|
494
|
current_position[Y_AXIS] += float((int)encoderPosition) * move_menu_scale;
|
493
|
495
|
if (min_software_endstops && current_position[Y_AXIS] < Y_MIN_POS)
|
494
|
496
|
current_position[Y_AXIS] = Y_MIN_POS;
|
|
@@ -518,6 +520,7 @@ static void lcd_move_z()
|
518
|
520
|
{
|
519
|
521
|
if (encoderPosition != 0)
|
520
|
522
|
{
|
|
523
|
+ refresh_cmd_timeout();
|
521
|
524
|
current_position[Z_AXIS] += float((int)encoderPosition) * move_menu_scale;
|
522
|
525
|
if (min_software_endstops && current_position[Z_AXIS] < Z_MIN_POS)
|
523
|
526
|
current_position[Z_AXIS] = Z_MIN_POS;
|