Merge pull request #4043 from 3d-gussner/MK3_Fix_fil_loaded_timeout
MK3: Set `Is filament loaded? Yes|No` default to `No` without a timeout.
This commit is contained in:
commit
22b43c2f2b
|
|
@ -3704,7 +3704,7 @@ void lcd_v2_calibration()
|
||||||
}
|
}
|
||||||
else
|
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;
|
lcd_update_enabled = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -3971,7 +3971,7 @@ void lcd_wizard(WizState state)
|
||||||
//start to preheat nozzle and bed to save some time later
|
//start to preheat nozzle and bed to save some time later
|
||||||
setTargetHotend(PLA_PREHEAT_HOTEND_TEMP);
|
setTargetHotend(PLA_PREHEAT_HOTEND_TEMP);
|
||||||
setTargetBed(PLA_PREHEAT_HPB_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) {
|
if (wizard_event == LCD_LEFT_BUTTON_CHOICE) {
|
||||||
state = S::Lay1CalCold;
|
state = S::Lay1CalCold;
|
||||||
} else { // MIDDLE_BUTTON_CHOICE
|
} else { // MIDDLE_BUTTON_CHOICE
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue