Fix "Resume Print" missing when doing a normal pause
This commit is contained in:
parent
14b72d2b46
commit
532d1fc4ae
1 changed files with 1 additions and 1 deletions
|
@ -6513,7 +6513,7 @@ static void lcd_main_menu()
|
|||
else
|
||||
{
|
||||
#ifdef FANCHECK
|
||||
if(fan_check_error == EFCE_FIXED)
|
||||
if((fan_check_error == EFCE_FIXED) || (fan_check_error == EFCE_OK))
|
||||
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
|
||||
#else
|
||||
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
|
||||
|
|
Loading…
Reference in a new issue