Fix "Resume Print" missing when doing a normal pause
This commit is contained in:
parent
14b72d2b46
commit
532d1fc4ae
|
|
@ -6513,7 +6513,7 @@ static void lcd_main_menu()
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#ifdef FANCHECK
|
#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
|
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
|
||||||
#else
|
#else
|
||||||
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
|
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue