mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 05:48:43 +00:00
Use lcd_goto_previous_menu_no_defer more
This commit is contained in:
parent
dc98ee553f
commit
cc4148e246
@ -1836,9 +1836,8 @@ void kill_screen(const char* lcd_msg) {
|
||||
line_to_z(Z_MIN_POS + MANUAL_PROBE_HEIGHT);
|
||||
lcd_synchronize(PSTR(MSG_LEVEL_BED_DONE));
|
||||
#endif
|
||||
lcd_goto_previous_menu();
|
||||
lcd_goto_previous_menu_no_defer();
|
||||
lcd_completion_feedback();
|
||||
defer_return_to_status = false;
|
||||
}
|
||||
if (lcdDrawUpdate) lcd_implementation_drawmenu_static(LCD_HEIGHT >= 4 ? 1 : 0, PSTR(MSG_LEVEL_BED_DONE));
|
||||
lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
|
||||
@ -2901,7 +2900,7 @@ void kill_screen(const char* lcd_msg) {
|
||||
*/
|
||||
|
||||
void _lcd_move_xyz(const char* name, AxisEnum axis) {
|
||||
if (use_click()) { return lcd_goto_previous_menu(); }
|
||||
if (use_click()) { return lcd_goto_previous_menu_no_defer(); }
|
||||
ENCODER_DIRECTION_NORMAL();
|
||||
if (encoderPosition && !processing_manual_move) {
|
||||
refresh_cmd_timeout();
|
||||
@ -2984,7 +2983,7 @@ void kill_screen(const char* lcd_msg) {
|
||||
const int8_t eindex=-1
|
||||
#endif
|
||||
) {
|
||||
if (use_click()) { return lcd_goto_previous_menu(); }
|
||||
if (use_click()) { return lcd_goto_previous_menu_no_defer(); }
|
||||
ENCODER_DIRECTION_NORMAL();
|
||||
if (encoderPosition) {
|
||||
if (!processing_manual_move) {
|
||||
|
Loading…
Reference in New Issue
Block a user