mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-01-17 13:25:43 -07:00
exclude_object: Fixed object exclusion with changing GCode axes
Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
This commit is contained in:
parent
1fc9d81095
commit
ded9f43654
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ class ExcludeObject:
|
|||
offset = [0.] * num_coord
|
||||
self.extrusion_offsets[ename] = offset
|
||||
if len(offset) < num_coord:
|
||||
offset.extend([0.] * (len(num_coord) - len(offset)))
|
||||
offset.extend([0.] * (num_coord - len(offset)))
|
||||
return offset
|
||||
|
||||
def get_position(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue