Allow statistiscs menu while running 1st Layer cal

There is no problem with opening the menu during first layer
calibration. Removing this condition simplifies the code a little bit.

Change in memory:
Flash: -8 bytes
SRAM: 0 bytes
This commit is contained in:
Guðni Már Gilbert 2023-04-28 17:37:29 +00:00 committed by D.R.racer
parent 74f724b228
commit ff6fd8cf4b
1 changed files with 1 additions and 1 deletions

View File

@ -5298,7 +5298,7 @@ static void lcd_main_menu()
if(!isPrintPaused && (custom_message_type != CustomMsg::Resuming)) MENU_ITEM_SUBMENU_P(_T(MSG_CALIBRATION), lcd_calibration_menu);
}
if (!usb_timer.running() && (lcd_commands_type == LcdCommands::Idle)) {
if (!usb_timer.running()) {
MENU_ITEM_SUBMENU_P(_i("Statistics"), lcd_menu_statistics);////MSG_STATISTICS c=18
}