diff --git a/src/apps/icon-o-matic/shape/VectorPath.cpp b/src/apps/icon-o-matic/shape/VectorPath.cpp index 8e645244f3..822159365d 100644 --- a/src/apps/icon-o-matic/shape/VectorPath.cpp +++ b/src/apps/icon-o-matic/shape/VectorPath.cpp @@ -689,6 +689,7 @@ VectorPath::Iterate(Iterator* iterator, float smoothScale) const // generate a curve for each segment of the path // then iterate over the segments of the curve agg::curve4_inc curve; + curve.approximation_scale(smoothScale); for (int32 i = 0; i < fPointCount - 1; i++) { iterator->MoveTo(fPath[i].point);