Correct applying correction angle.

--HG--
branch : feature
This commit is contained in:
Roman Telezhynskyi 2017-10-24 14:23:11 +03:00
parent 14e19ced4b
commit 7a2297ed6b

View file

@ -178,7 +178,7 @@ PlaceLabelImg VPlaceLabelItem::LabelShape() const
{
QTransform t;
t.translate(x(), y());
t.rotate(-(d->aValue+d->correctionAngle));
t.rotate(-d->aValue-d->correctionAngle);
t.translate(-x(), -y());
auto SegmentShape = [t, this]()