Skip to content

Commit

Permalink
...or...
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead authored Oct 15, 2021
1 parent 1d57c95 commit 695be4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/tool_change.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) {

TERN_(HAS_FANMUX, fanmux_switch(active_extruder));

if (TERN(EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN, true, !no_move)) {
if (ENABLED(EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN) || !no_move) {
#ifdef EVENT_GCODE_TOOLCHANGE_T0
if (new_tool == 0)
gcode.process_subcommands_now(F(EVENT_GCODE_TOOLCHANGE_T0));
Expand Down

0 comments on commit 695be4b

Please sign in to comment.