Merge pull request #233 from PavelSindler/xyz_details_pauses_print

Xyz details pauses print when printing from USB - hotfix: hide menu when printing
This commit is contained in:
PavelSindler 2017-10-13 14:09:20 +02:00 committed by GitHub
commit 6e3174cba2
1 changed files with 1 additions and 1 deletions

View File

@ -1483,7 +1483,7 @@ static void lcd_support_menu()
}
#ifndef MK1BP
MENU_ITEM(back, PSTR("------------"), lcd_main_menu);
if(!IS_SD_PRINTING) MENU_ITEM(function, MSG_XYZ_DETAILS, lcd_service_mode_show_result);
if(!IS_SD_PRINTING && !is_usb_printing) MENU_ITEM(function, MSG_XYZ_DETAILS, lcd_service_mode_show_result);
#endif //MK1BP
END_MENU();
}