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:
parent
e88c92a8dc
commit
2fc810289a
|
|
@ -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
|
||||
//!
|
||||
|
|
|
|||
Loading…
Reference in New Issue