mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-03-21 20:11:38 +01:00
exclude_object: Fixed object exclusion with changing GCode axes
Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
This commit is contained in:
committed by
KevinOConnor
parent
1fc9d81095
commit
2bd0acb6ca
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user