浏览代码

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

Arkadiusz Miśkiewicz 1年前
父节点
当前提交
c9ef1277f3
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/sd/cardreader.cpp

+ 1
- 1
Marlin/src/sd/cardreader.cpp 查看文件

@@ -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);

正在加载...
取消
保存