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:
authorGhostkeeper <ghost_keeper+github@hotmail.com>2016-04-04 19:49:09 +0300
committerGhostkeeper <ghost_keeper+github@hotmail.com>2016-04-04 19:49:09 +0300
commit0684cee68119dae644c2e264f1072faadcd1bdcd (patch)
tree9ab9894ff51bb2fdc359ac8b30403730854be23b /cura/PlatformPhysics.py
parent3ed7d60adbe8b7f47ca05af2370d692334d93963 (diff)
parentefdd92d358926cbc88fd30b5db587827b2d908d9 (diff)
Merge branch '2.1'
Conflicts: resources/machines/fdmprinter.json resources/machines/innovo-inventor.json resources/profiles/general/High+Quality.cfg resources/profiles/general/Low+Quality.cfg resources/profiles/general/Normal+Quality.cfg resources/profiles/general/Ulti+Quality.cfg resources/profiles/ultimaker2+/pla_0.4_high.curaprofile
Diffstat (limited to 'cura/PlatformPhysics.py')
-rw-r--r--cura/PlatformPhysics.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py
index 4433354fdd..78f2b4938b 100644
--- a/cura/PlatformPhysics.py
+++ b/cura/PlatformPhysics.py
@@ -61,11 +61,6 @@ class PlatformPhysics:
# Mark the node as outside the build volume if the bounding box test fails.
if build_volume_bounding_box.intersectsBox(bbox) != AxisAlignedBox.IntersectionResult.FullIntersection:
node._outside_buildarea = True
- else:
- # When printing one at a time too high objects are not printable.
- if Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("print_sequence") == "one_at_a_time":
- if node.getBoundingBox().height > Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("gantry_height"):
- node._outside_buildarea = True
# Move it downwards if bottom is above platform
move_vector = Vector()