diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 809d392c10..aba94e8c60 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -1102,7 +1102,7 @@ class BuildVolume(SceneNode): # If we are printing one at a time, we need to add the bed adhesion size to the disallowed areas of the objects if container_stack.getProperty("print_sequence", "value") == "one_at_a_time": - return 0 + return 0.1 bed_adhesion_size = self._calculateBedAdhesionSize(used_extruders) support_expansion = self._calculateSupportExpansion(self._global_container_stack) diff --git a/tests/TestBuildVolume.py b/tests/TestBuildVolume.py index 4beb648c89..6ccb3d0fb7 100644 --- a/tests/TestBuildVolume.py +++ b/tests/TestBuildVolume.py @@ -386,5 +386,5 @@ class TestGetEdgeDisallowedSize: build_volume._global_container_stack = self.createMockedStack() with patch("cura.Settings.ExtruderManager.ExtruderManager.getInstance"): with patch.dict(self.setting_property_dict, {"print_sequence": {"value": "one_at_a_time"}}): - assert build_volume.getEdgeDisallowedSize() == 0.0 + assert build_volume.getEdgeDisallowedSize() == 0.1