Browse Source

Use lcd_goto_previous_menu_no_defer more

pull/1/head
Scott Lahteine 6 years ago
parent
commit
f1327fd5f9
  1. 7
      Marlin/src/lcd/ultralcd.cpp

7
Marlin/src/lcd/ultralcd.cpp

@ -1841,9 +1841,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;
@ -2907,7 +2906,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) {
gcode.refresh_cmd_timeout();
@ -2990,7 +2989,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…
Cancel
Save