Confirm object cancellation (#15660)

This commit is contained in:
Scott Lahteine
2019-10-27 19:50:21 -05:00
committed by GitHub
parent 78899fc241
commit 9aff30da0c
5 changed files with 40 additions and 30 deletions

View File

@@ -42,6 +42,13 @@ void CancelObject::set_active_object(const int8_t obj) {
}
else
skipping = false;
#if HAS_DISPLAY
if (active_object >= 0)
ui.status_printf_P(0, PSTR(S_FMT " %i"), GET_TEXT(MSG_PRINTING_OBJECT), int(active_object + 1));
else
ui.reset_status();
#endif
}
void CancelObject::cancel_object(const int8_t obj) {