Return to status when SD card is removed

This commit is contained in:
Scott Lahteine
2019-01-08 23:08:20 -06:00
parent 5f2d75f45b
commit e6484d9dab
2 changed files with 5 additions and 2 deletions

View File

@ -709,7 +709,10 @@ void MarlinUI::update() {
}
else {
card.release();
if (old_sd_status != 2) set_status_P(PSTR(MSG_SD_REMOVED));
if (old_sd_status != 2) {
set_status_P(PSTR(MSG_SD_REMOVED));
if (!on_status_screen()) return_to_status();
}
}
refresh();