Browse Source

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
Arjen Hiemstra 7 years ago
parent
commit
d44caa281b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/PlatformPhysicsOperation.py

+ 1 - 1
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