Browse Source

Update MakerbotWriter.py

switch back and front bounds order to line up with the NP and makerbot documentation
HellAholic 4 months ago
parent
commit
0311ca0ddc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/MakerbotWriter/MakerbotWriter.py

+ 1 - 1
plugins/MakerbotWriter/MakerbotWriter.py

@@ -250,7 +250,7 @@ class MakerbotWriter(MeshWriter):
         meta["preferences"] = dict()
         bounds = application.getBuildVolume().getBoundingBox()
         meta["preferences"]["instance0"] = {
-            "machineBounds": [bounds.right, bounds.back, bounds.left, bounds.front] if bounds is not None else None,
+            "machineBounds": [bounds.right, bounds.front, bounds.left, bounds.back] if bounds is not None else None,
             "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory,
         }