Merge remote-tracking branch 'origin/5.9' into CURA-12188_build_plate_z_fighting

This commit is contained in:
Remco Burema 2024-11-05 14:30:33 +01:00
commit 8bf6320ff0
25 changed files with 1089 additions and 973 deletions

View file

@ -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,
}