Fix an issue on multilang builds where first two charactes are not rendered (#3781)

This commit is contained in:
Guðni Már Gilbert 2022-12-30 14:18:48 +00:00 committed by GitHub
parent 85d27e6e5e
commit 9cbf0a28cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1174,7 +1174,7 @@ static void lcd_menu_fails_stats_mmu()
MENU_ITEM_BACK_P(_T(MSG_MAIN));
MENU_ITEM_SUBMENU_P(_T(MSG_LAST_PRINT), lcd_menu_fails_stats_mmu_print);
MENU_ITEM_SUBMENU_P(_T(MSG_TOTAL), lcd_menu_fails_stats_mmu_total);
MENU_ITEM_SUBMENU_P(_O(PSTR("Toolchange count")), lcd_menu_toolchange_stats_mmu_total);
MENU_ITEM_SUBMENU_P(_i("Toolchange count"), lcd_menu_toolchange_stats_mmu_total);
MENU_END();
}