Alert user in wizard about more sheets presets.

This commit is contained in:
Marek Bel 2019-09-13 17:09:11 +02:00
parent e754780717
commit 015b34de05
1 changed files with 5 additions and 2 deletions

View File

@ -4782,11 +4782,14 @@ void lcd_wizard(WizState state)
break; break;
case S::RepeatLay1Cal: //repeat first layer cal.? case S::RepeatLay1Cal: //repeat first layer cal.?
wizard_event = lcd_show_multiscreen_message_yes_no_and_wait_P(_i("Do you want to repeat last step to readjust distance between nozzle and heatbed?"), false);////MSG_WIZARD_REPEAT_V2_CAL c=20 r=7 wizard_event = lcd_show_multiscreen_message_yes_no_and_wait_P(_i("Do you want to repeat last step to readjust distance between nozzle and heatbed?"), false);////MSG_WIZARD_REPEAT_V2_CAL c=20 r=7
if (wizard_event) { if (wizard_event)
{
lcd_show_fullscreen_message_and_wait_P(_i("Please clean heatbed and then press the knob."));////MSG_WIZARD_CLEAN_HEATBED c=20 r=8 lcd_show_fullscreen_message_and_wait_P(_i("Please clean heatbed and then press the knob."));////MSG_WIZARD_CLEAN_HEATBED c=20 r=8
state = S::Lay1Cal; state = S::Lay1Cal;
} }
else { else
{
lcd_show_fullscreen_message_and_wait_P(_i("If you have more steel sheets you can calibrate additional presets in Settings / HW Setup / Steel sheets."));
state = S::Finish; state = S::Finish;
} }
break; break;