Skip to content

Commit

Permalink
Set YES as default in Crash Resume message
Browse files Browse the repository at this point in the history
  • Loading branch information
3d-gussner committed Nov 30, 2023
1 parent fcd8a9f commit 5dbc847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ void crashdet_detected(uint8_t mask)
// ask whether to resume printing
lcd_puts_at_P(0, 1, _T(MSG_RESUME_PRINT));
lcd_putc('?');
uint8_t yesno = lcd_show_yes_no_and_wait(false);
uint8_t yesno = lcd_show_yes_no_and_wait(false, LCD_LEFT_BUTTON_CHOICE);
if (yesno == LCD_LEFT_BUTTON_CHOICE)
{
enquecommand_P(PSTR("CRASH_RECOVER"));
Expand Down

0 comments on commit 5dbc847

Please sign in to comment.