Fix an issue with feedback double triggering in XYZ cal menu

The feedback is produced due to the user clicking the knob

the menu_goto call should therefore not trigger additional feedback when
switching between menus.

No change in memory
This commit is contained in:
Guðni Már Gilbert 2023-04-12 16:46:33 +00:00
parent e88c92a8dc
commit 2fc810289a
1 changed files with 2 additions and 2 deletions

View File

@ -2481,7 +2481,7 @@ static void lcd_menu_xyz_y_min()
else lcd_printf_P(_N("%6.2fmm"), distanceMin[i]);
}
if (lcd_clicked())
menu_goto(lcd_menu_xyz_skew, 0, true, true);
menu_goto(lcd_menu_xyz_skew, 0, true);
}
//@brief Show measured axis skewness
@ -2524,7 +2524,7 @@ static void lcd_menu_xyz_skew()
lcd_puts_P(_T(MSG_NA));
}
if (lcd_clicked())
menu_goto(lcd_menu_xyz_offset, 0, true, true);
menu_goto(lcd_menu_xyz_offset, 0, true);
}
//! @brief Show measured bed offset from expected position
//!