Browse Source

Added warning to logging if no one at a time print is possible

CURA-972
Jaime van Kessel 9 years ago
parent
commit
fa59416dc4
1 changed files with 2 additions and 0 deletions
  1. 2 0
      plugins/CuraEngineBackend/StartSliceJob.py

+ 2 - 0
plugins/CuraEngineBackend/StartSliceJob.py

@@ -61,6 +61,8 @@ class StartSliceJob(Job):
                 if temp_list:
                     object_groups.append(temp_list)
                 Job.yieldThread()
+            if len(object_groups) == 0:
+                Logger.log("w", "No objects suitable for one at a time found, or no correct order found")
         else:
             temp_list = []
             for node in DepthFirstIterator(self._scene.getRoot()):