Browse Source

🚸 On pause report "SD printing byte X/Y" (#24709)

Arkadiusz Miśkiewicz 2 years ago
parent
commit
c9ef1277f3
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/sd/cardreader.cpp

+ 1
- 1
Marlin/src/sd/cardreader.cpp View File

789
 }
789
 }
790
 
790
 
791
 void CardReader::report_status() {
791
 void CardReader::report_status() {
792
-  if (isPrinting()) {
792
+  if (isPrinting() || isPaused()) {
793
     SERIAL_ECHOPGM(STR_SD_PRINTING_BYTE, sdpos);
793
     SERIAL_ECHOPGM(STR_SD_PRINTING_BYTE, sdpos);
794
     SERIAL_CHAR('/');
794
     SERIAL_CHAR('/');
795
     SERIAL_ECHOLN(filesize);
795
     SERIAL_ECHOLN(filesize);

Loading…
Cancel
Save