Sfoglia il codice sorgente

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

Arkadiusz Miśkiewicz 2 anni fa
parent
commit
c9ef1277f3
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/src/sd/cardreader.cpp

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

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

Loading…
Annulla
Salva