Remove redundant call to lcd_update_enable

This commit is contained in:
Guðni Már Gilbert 2022-05-22 10:11:12 +00:00 committed by D.R.racer
parent f1803357b0
commit 33650c6e56
1 changed files with 5 additions and 6 deletions

View File

@ -5124,12 +5124,11 @@ static void mmu_load_filament_menu() {
static inline void lcd_mmu_load_to_nozzle_wrapper(uint8_t index){ static inline void lcd_mmu_load_to_nozzle_wrapper(uint8_t index){
MMU2::mmu2.load_filament_to_nozzle(index); MMU2::mmu2.load_filament_to_nozzle(index);
// Ask user if the extruded color is correct: // Ask user if the extruded color is correct:
lcd_return_to_status(); lcd_return_to_status();
lcd_update_enable(true); lcd_load_filament_color_check();
lcd_load_filament_color_check(); lcd_setstatuspgm(MSG_WELCOME);
lcd_setstatuspgm(MSG_WELCOME); custom_message_type = CustomMsg::Status;
custom_message_type = CustomMsg::Status;
} }
static void mmu_load_to_nozzle_menu() { static void mmu_load_to_nozzle_menu() {