From 33650c6e569618a5d5622a628530f3d06ec4af71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Sun, 22 May 2022 10:11:12 +0000 Subject: [PATCH] Remove redundant call to lcd_update_enable --- Firmware/ultralcd.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp index 13d9e4264..7f1c9f69e 100755 --- a/Firmware/ultralcd.cpp +++ b/Firmware/ultralcd.cpp @@ -5124,12 +5124,11 @@ static void mmu_load_filament_menu() { static inline void lcd_mmu_load_to_nozzle_wrapper(uint8_t index){ MMU2::mmu2.load_filament_to_nozzle(index); - // Ask user if the extruded color is correct: - lcd_return_to_status(); - lcd_update_enable(true); - lcd_load_filament_color_check(); - lcd_setstatuspgm(MSG_WELCOME); - custom_message_type = CustomMsg::Status; + // Ask user if the extruded color is correct: + lcd_return_to_status(); + lcd_load_filament_color_check(); + lcd_setstatuspgm(MSG_WELCOME); + custom_message_type = CustomMsg::Status; } static void mmu_load_to_nozzle_menu() {