Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNino van Hooff <ninovanhooff@gmail.com>2019-10-31 16:59:54 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2019-10-31 16:59:54 +0300
commite5fb9fb8cfa1fb090d3e91b796a27b1a6b8c0213 (patch)
tree51c9bdd0af6c005bb946a17e3bd19e015faf5f78 /cura/BuildVolume.py
parentcc221f6295bc67f603c6c7ccaf135f8acb73c33e (diff)
Remove hack used to draw some build area edge border
This disallowed area should not exist and caused difference in behavior between all-at-once and one-at-a-time printing for a single object CURA-6522
Diffstat (limited to 'cura/BuildVolume.py')
-rwxr-xr-xcura/BuildVolume.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py
index bc8c806699..7928b0243a 100755
--- a/cura/BuildVolume.py
+++ b/cura/BuildVolume.py
@@ -1103,7 +1103,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.1 # Return a very small value, so we do draw disallowed area's near the edges.
+ return 0
bed_adhesion_size = self._calculateBedAdhesionSize(used_extruders)
support_expansion = self._calculateSupportExpansion(self._global_container_stack)