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:
Alex Voinea 2023-04-12 21:29:24 +02:00 committed by GitHub
commit c16e7733e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
//!