diff --git a/ChangeLog.txt b/ChangeLog.txt index 444acb6d2..22f2da69a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -45,6 +45,7 @@ - [#966] Unable to control Approximation scale for arc with length. - [#967] Variable must not include new line character. - German translation for Inno setup script. +- [#971] Group operation do not work with VCubicBezierPath. # Version 0.6.1 October 23, 2018 - [#885] Regression. Broken support for multi size measurements. diff --git a/src/libs/vgeometry/vcubicbezierpath.cpp b/src/libs/vgeometry/vcubicbezierpath.cpp index 58d49913c..7963ce795 100644 --- a/src/libs/vgeometry/vcubicbezierpath.cpp +++ b/src/libs/vgeometry/vcubicbezierpath.cpp @@ -146,11 +146,6 @@ const VPointF &VCubicBezierPath::at(int indx) const //--------------------------------------------------------------------------------------------------------------------- void VCubicBezierPath::append(const VPointF &point) { - if (d->path.size() > 0 && static_cast(d->path.last()) != static_cast(point)) - { - return; - } - d->path.append(point); CreateName(); }