From 8541ce25bb7d6525b067103c6c174c3b4c29ab18 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Tue, 6 Feb 2018 15:43:29 +0100 Subject: [PATCH] CURA-4425 Remove print out messages --- cura/Snapshot.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index fbbee29d1b..394241cfa8 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -55,8 +55,6 @@ class Snapshot: # determine zoom and look at bbox = None for node in DepthFirstIterator(root): - if type(node) == ConvexHullNode: - print(node) if node.callDecoration("isSliceable") and node.getMeshData() and node.isVisible(): if bbox is None: bbox = node.getBoundingBox()