Remove redundant call to lcd_update_enable
This commit is contained in:
parent
f1803357b0
commit
33650c6e56
|
|
@ -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() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue