Sfoglia il codice sorgente

Patch tool_change typo

Scott Lahteine 5 anni fa
parent
commit
44b71103df
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/src/module/tool_change.cpp

+ 1
- 1
Marlin/src/module/tool_change.cpp Vedi File

947
 
947
 
948
       // Unload / Retract
948
       // Unload / Retract
949
       #if ENABLED(TOOLCHANGE_FILAMENT_SWAP)
949
       #if ENABLED(TOOLCHANGE_FILAMENT_SWAP)
950
-        const bool should_swap = can_move_away && toolchange_settings.swap_length;
950
+        const bool should_swap = can_move_away && toolchange_settings.swap_length,
951
                    too_cold = TERN0(PREVENT_COLD_EXTRUSION,
951
                    too_cold = TERN0(PREVENT_COLD_EXTRUSION,
952
                      !DEBUGGING(DRYRUN) && (thermalManager.targetTooColdToExtrude(old_tool) || thermalManager.targetTooColdToExtrude(new_tool))
952
                      !DEBUGGING(DRYRUN) && (thermalManager.targetTooColdToExtrude(old_tool) || thermalManager.targetTooColdToExtrude(new_tool))
953
                    );
953
                    );

Loading…
Annulla
Salva