Skip to content

Commit

Permalink
Fix missing % on DOGM Status Screen (MarlinFirmware#15748)
Browse files Browse the repository at this point in the history
  • Loading branch information
robbycandra authored and thinkyhead committed Nov 2, 2019
1 parent 65ef774 commit bdb452e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/dogm/status_screen_DOGM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit bdb452e

Please sign in to comment.