Merge pull request #4141 from gudnimg/double-feedback-xyz-cal-menu
menu: Fix an issue with feedback double triggering in XYZ cal menu on knob click
This commit is contained in:
commit
c16e7733e9
|
|
@ -2481,7 +2481,7 @@ static void lcd_menu_xyz_y_min()
|
||||||
else lcd_printf_P(_N("%6.2fmm"), distanceMin[i]);
|
else lcd_printf_P(_N("%6.2fmm"), distanceMin[i]);
|
||||||
}
|
}
|
||||||
if (lcd_clicked())
|
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
|
//@brief Show measured axis skewness
|
||||||
|
|
@ -2524,7 +2524,7 @@ static void lcd_menu_xyz_skew()
|
||||||
lcd_puts_P(_T(MSG_NA));
|
lcd_puts_P(_T(MSG_NA));
|
||||||
}
|
}
|
||||||
if (lcd_clicked())
|
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
|
//! @brief Show measured bed offset from expected position
|
||||||
//!
|
//!
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue