From 2ed30847cfae5e32b43d8671cc02b6a10e9b66d5 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 30 Apr 2017 21:35:03 +0200 Subject: spline: really fix moving points together --- spline/spline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'spline/spline.cpp') diff --git a/spline/spline.cpp b/spline/spline.cpp index 0f606173..195d68d6 100644 --- a/spline/spline.cpp +++ b/spline/spline.cpp @@ -317,7 +317,7 @@ void spline::move_point(int idx, QPointF pt) { points[idx] = pt; // we don't allow points to be reordered, but sort due to possible caller logic error - std::stable_sort(points.begin(), points.end(), sort_fn); + //std::stable_sort(points.begin(), points.end(), sort_fn); s->points = points; validp = false; } -- cgit v1.2.3