mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-30 00:45:13 +08:00
Resetting transformation now works again for ungrouped nodes
CURA-2925
This commit is contained in:
parent
2e1f4e3740
commit
a71bb63318
@ -799,11 +799,9 @@ class CuraApplication(QtApplication):
|
|||||||
for node in nodes:
|
for node in nodes:
|
||||||
# Ensure that the object is above the build platform
|
# Ensure that the object is above the build platform
|
||||||
node.removeDecorator(ZOffsetDecorator.ZOffsetDecorator)
|
node.removeDecorator(ZOffsetDecorator.ZOffsetDecorator)
|
||||||
center_y = 0
|
|
||||||
if node.callDecoration("isGroup"):
|
center_y = node.getWorldPosition().y - node.getBoundingBox().bottom
|
||||||
center_y = node.getWorldPosition().y - node.getBoundingBox().bottom
|
|
||||||
else:
|
|
||||||
center_y = node.getMeshData().getCenterPosition().y
|
|
||||||
op.addOperation(SetTransformOperation(node, Vector(0, center_y, 0), Quaternion(), Vector(1, 1, 1)))
|
op.addOperation(SetTransformOperation(node, Vector(0, center_y, 0), Quaternion(), Vector(1, 1, 1)))
|
||||||
op.push()
|
op.push()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user