Scott Lahteine
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Marlin/src/gcode/control/M17_M18_M84.cpp
|
|
@ -45,7 +45,7 @@ void GcodeSuite::M18_M84() { |
|
|
|
stepper_inactive_time = parser.value_millis_from_seconds(); |
|
|
|
} |
|
|
|
else { |
|
|
|
bool all_axis = !((parser.seen('X')) || (parser.seen('Y')) || (parser.seen('Z')) || (parser.seen('E'))); |
|
|
|
bool all_axis = !(parser.seen('X') || parser.seen('Y') || parser.seen('Z') || parser.seen('E')); |
|
|
|
if (all_axis) { |
|
|
|
stepper.finish_and_disable(); |
|
|
|
} |
|
|
|