Merge pull request #6816 from thinkyhead/bf_lcd_live_editing

Constrain LCD status message rendering
This commit is contained in:
Scott Lahteine
2017-05-22 11:15:35 -05:00
committed by GitHub
3 changed files with 18 additions and 6 deletions

View File

@ -2509,9 +2509,12 @@ void kill_screen(const char* lcd_msg) {
#if ENABLED(EEPROM_SETTINGS)
MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings);
MENU_ITEM(function, MSG_RESTORE_FAILSAFE, lcd_factory_settings);
#endif
MENU_ITEM(function, MSG_RESTORE_FAILSAFE, lcd_factory_settings);
#if ENABLED(EEPROM_SETTINGS)
MENU_ITEM(gcode, MSG_INIT_EEPROM, PSTR("M502\nM500")); // TODO: Add "Are You Sure?" step
#endif
END_MENU();
}