From 00e4ced58e6bba77448369e4baa4aedd2c8bae14 Mon Sep 17 00:00:00 2001 From: Jamie Bainbridge Date: Sat, 8 Jul 2017 13:10:49 +1000 Subject: [PATCH] Stay in User Menu after command. Add feedback. When a user executes a User Menu command, the LCD returns to the main menu. If the user has multiple menu items they want to run, such as one menu item per bed leveling corner, then it's better to stay in the User Menu rather than return to the main menu. This PR modifies Marlin to stay in the User Menu after a command. --- Marlin/ultralcd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/ultralcd.cpp b/Marlin/ultralcd.cpp index c70775c03..d32dd6044 100644 --- a/Marlin/ultralcd.cpp +++ b/Marlin/ultralcd.cpp @@ -834,8 +834,8 @@ void kill_screen(const char* lcd_msg) { #endif void _lcd_user_gcode(const char * const cmd) { - lcd_return_to_status(); enqueue_and_echo_commands_P(cmd); + lcd_completion_feedback(); } #if defined(USER_DESC_1) && defined(USER_GCODE_1)