diff --git a/Cura/util/sliceEngine.py b/Cura/util/sliceEngine.py index f82d2fc81..77ac9308f 100644 --- a/Cura/util/sliceEngine.py +++ b/Cura/util/sliceEngine.py @@ -343,7 +343,7 @@ def _runEngine(self, scene, overrides, old_thread): objMax[1] = max(oMax[1], objMax[1]) if objMin is None: return - pos += (objMin + objMax) / 2.0 * 1000 + pos = numpy.add( pos, (objMin + objMax) / 2.0 * 1000, out=pos, casting='unsafe') commandList += ['-s', 'posx=%d' % int(pos[0]), '-s', 'posy=%d' % int(pos[1])] vertexTotal = [0] * 4