In dialog 'tool Spline Path' fixed broken selecting new point into the list of

points.

--HG--
branch : release
This commit is contained in:
Roman Telezhynskyi 2016-02-16 17:29:00 +02:00
parent dfd89778e3
commit 98126ff8ac
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
# Version 0.4.2 # Version 0.4.2
- In dialog 'tool Spline Path' fixed broken selecting new point into the list of points.
- Regesign dialogs tool 'Spline' and 'Spline Path' for avoiding text squeeze. - Regesign dialogs tool 'Spline' and 'Spline Path' for avoiding text squeeze.
- Fixed getting correct reversed segment for single in the list curve. - Fixed getting correct reversed segment for single in the list curve.
- Fixed triggering validation a detail. Two new cases: has been changed Reverse option and the list - Fixed triggering validation a detail. Two new cases: has been changed Reverse option and the list

View File

@ -187,6 +187,7 @@ void DialogSplinePath::currentPointChanged(int index)
DataPoint(p.P().id(), p.KAsm1(), p.Angle1(), p.KAsm2(), p.Angle2()); DataPoint(p.P().id(), p.KAsm1(), p.Angle1(), p.KAsm2(), p.Angle2());
EnableFields(); EnableFields();
item->setData(Qt::UserRole, QVariant::fromValue(p)); item->setData(Qt::UserRole, QVariant::fromValue(p));
item->setText(p.P().name());
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------