From 0311ca0ddc1d7f449ece9d2af9cce5ef473baa2c Mon Sep 17 00:00:00 2001 From: HellAholic Date: Fri, 25 Oct 2024 13:30:27 +0200 Subject: [PATCH] Update MakerbotWriter.py switch back and front bounds order to line up with the NP and makerbot documentation --- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 8b30362d78..5c655dc8cc 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/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, }