Browse Source

Fix missing % on DOGM Status Screen (#15748)

Robby Candra 5 years ago
parent
commit
bdb452ed81
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/dogm/status_screen_DOGM.cpp

+ 1
- 1
Marlin/src/lcd/dogm/status_screen_DOGM.cpp View File

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

Loading…
Cancel
Save