Fix missing % on DOGM Status Screen (#15748)

This commit is contained in:
Robby Candra 2019-11-02 19:01:50 +07:00 committed by Scott Lahteine
parent 65ef774e8d
commit bdb452ed81

View file

@ -438,7 +438,7 @@ void MarlinUI::draw_status_screen() {
));
}
#if BOTH(SHOW_REMAINING_TIME, ROTATE_PROGRESS_DISPLAY) // Tri-state progress display mode
progress_x_pos = _SD_INFO_X(strlen(progress_string));
progress_x_pos = _SD_INFO_X(strlen(progress_string) + 1);
#endif
#endif
}