Explorar el Código

🎨 Tweak M73 condition

Scott Lahteine hace 3 años
padre
commit
bf9cd90cc4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/src/gcode/lcd/M73.cpp

+ 1
- 1
Marlin/src/gcode/lcd/M73.cpp Ver fichero

@@ -40,7 +40,7 @@ void GcodeSuite::M73() {
40 40
       ? parser.value_float() * (PROGRESS_SCALE)
41 41
       : parser.value_byte()
42 42
     );
43
-  #if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
43
+  #if ENABLED(USE_M73_REMAINING_TIME)
44 44
     if (parser.seenval('R')) ui.set_remaining_time(60 * parser.value_ulong());
45 45
   #endif
46 46
 }

Loading…
Cancelar
Guardar