mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-17 23:18:34 +00:00
Set defer delay back to false when exiting babystepping.
This commit is contained in:
parent
0921c7da84
commit
0009725637
1 changed files with 1 additions and 1 deletions
|
@ -671,7 +671,7 @@ void kill_screen(const char* lcd_msg) {
|
|||
long babysteps_done = 0;
|
||||
|
||||
static void _lcd_babystep(const AxisEnum axis, const char* msg) {
|
||||
if (LCD_CLICKED) { lcd_goto_previous_menu(true); return; }
|
||||
if (LCD_CLICKED) { defer_return_to_status = false; lcd_goto_previous_menu(true); return; }
|
||||
ENCODER_DIRECTION_NORMAL();
|
||||
if (encoderPosition) {
|
||||
int babystep_increment = (int32_t)encoderPosition * BABYSTEP_MULTIPLICATOR;
|
||||
|
|
Loading…
Reference in a new issue