Skip to content

Commit

Permalink
Merge pull request MarlinFirmware#4043 from 3d-gussner/MK3_Fix_fil_lo…
Browse files Browse the repository at this point in the history
…aded_timeout

MK3: Set `Is filament loaded? Yes|No` default to `No` without a timeout.
  • Loading branch information
3d-gussner authored Feb 21, 2023
2 parents 792a39c + 36c6b32 commit 22b43c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Firmware/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3704,7 +3704,7 @@ void lcd_v2_calibration()
}
else
{
loaded = !lcd_show_fullscreen_message_yes_no_and_wait_P(_T(MSG_FILAMENT_LOADED), false, LCD_LEFT_BUTTON_CHOICE);
loaded = !lcd_show_fullscreen_message_yes_no_and_wait_P(_T(MSG_FILAMENT_LOADED), false, LCD_MIDDLE_BUTTON_CHOICE);
lcd_update_enabled = true;

}
Expand Down Expand Up @@ -3971,7 +3971,7 @@ void lcd_wizard(WizState state)
//start to preheat nozzle and bed to save some time later
setTargetHotend(PLA_PREHEAT_HOTEND_TEMP);
setTargetBed(PLA_PREHEAT_HPB_TEMP);
wizard_event = lcd_show_fullscreen_message_yes_no_and_wait_P(_T(MSG_FILAMENT_LOADED), true);
wizard_event = lcd_show_fullscreen_message_yes_no_and_wait_P(_T(MSG_FILAMENT_LOADED), false, LCD_MIDDLE_BUTTON_CHOICE);
if (wizard_event == LCD_LEFT_BUTTON_CHOICE) {
state = S::Lay1CalCold;
} else { // MIDDLE_BUTTON_CHOICE
Expand Down

0 comments on commit 22b43c2

Please sign in to comment.