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

CURA-972
This commit is contained in:
Jaime van Kessel 2016-03-01 09:30:33 +01:00
parent 36f8bb5553
commit fa59416dc4

View file

@ -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()):