From d44caa281b61c5369a0c2232b16286c9e1ad2465 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Tue, 13 Jun 2017 13:10:59 +0200 Subject: [PATCH] Fix ordering of merged PlatformPhysicsOperation This makes sure we undo the PP operation before the other operation, so the ordering of operations is still correct. Contributes to CURA-3912 --- cura/PlatformPhysicsOperation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PlatformPhysicsOperation.py b/cura/PlatformPhysicsOperation.py index 04f7e1616c..57206226e2 100644 --- a/cura/PlatformPhysicsOperation.py +++ b/cura/PlatformPhysicsOperation.py @@ -23,8 +23,8 @@ class PlatformPhysicsOperation(Operation): def mergeWith(self, other): group = GroupedOperation() - group.addOperation(self) group.addOperation(other) + group.addOperation(self) return group