diff --git a/ChangeLog.txt b/ChangeLog.txt index 0f0b8c710..e7eb037e0 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,4 +1,5 @@ # 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. - 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 diff --git a/src/libs/vtools/dialogs/tools/dialogsplinepath.cpp b/src/libs/vtools/dialogs/tools/dialogsplinepath.cpp index 57b9a0bfd..f12e49c5e 100644 --- a/src/libs/vtools/dialogs/tools/dialogsplinepath.cpp +++ b/src/libs/vtools/dialogs/tools/dialogsplinepath.cpp @@ -187,6 +187,7 @@ void DialogSplinePath::currentPointChanged(int index) DataPoint(p.P().id(), p.KAsm1(), p.Angle1(), p.KAsm2(), p.Angle2()); EnableFields(); item->setData(Qt::UserRole, QVariant::fromValue(p)); + item->setText(p.P().name()); } //---------------------------------------------------------------------------------------------------------------------