Limit layer processing to 99% to indicate more stuff needs to happen

Fixes CURA-1644
This commit is contained in:
Arjen Hiemstra 2016-06-02 11:22:39 +02:00
parent 49e5b1938a
commit 5873f1d4d0

View file

@ -96,7 +96,7 @@ class ProcessSlicedLayersJob(Job):
Job.yieldThread()
Job.yieldThread()
current_layer += 1
progress = (current_layer / layer_count) * 100
progress = (current_layer / layer_count) * 99
# TODO: Rebuild the layer data mesh once the layer has been processed.
# This needs some work in LayerData so we can add the new layers instead of recreating the entire mesh.