Fixed issue #971. Group operation do not work with VCubicBezierPath.
--HG-- branch : release
This commit is contained in:
parent
1d9b28d79b
commit
43c986c597
|
@ -24,6 +24,7 @@
|
||||||
- [#966] Unable to control Approximation scale for arc with length.
|
- [#966] Unable to control Approximation scale for arc with length.
|
||||||
- [#967] Variable must not include new line character.
|
- [#967] Variable must not include new line character.
|
||||||
- German translation for Inno setup script.
|
- German translation for Inno setup script.
|
||||||
|
- [#971] Group operation do not work with VCubicBezierPath.
|
||||||
|
|
||||||
# Version 0.6.1 October 23, 2018
|
# Version 0.6.1 October 23, 2018
|
||||||
- [#885] Regression. Broken support for multi size measurements.
|
- [#885] Regression. Broken support for multi size measurements.
|
||||||
|
|
|
@ -146,11 +146,6 @@ const VPointF &VCubicBezierPath::at(int indx) const
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void VCubicBezierPath::append(const VPointF &point)
|
void VCubicBezierPath::append(const VPointF &point)
|
||||||
{
|
{
|
||||||
if (d->path.size() > 0 && static_cast<QPointF>(d->path.last()) != static_cast<QPointF>(point))
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
d->path.append(point);
|
d->path.append(point);
|
||||||
CreateName();
|
CreateName();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user