diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-21 16:38:44 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-21 16:59:08 +0100 |
commit | 4896a8a8cdce0a6da8379b3ee167773c97fc7131 (patch) | |
tree | 95f29f27ebce70d26e7c292586b0fa2bdc26b31b /spline-widget | |
parent | d55227cbbe39db5577f87353d30eb4c77fa45311 (diff) |
spline-widget: no-op as minimal diff
Diffstat (limited to 'spline-widget')
-rw-r--r-- | spline-widget/spline.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spline-widget/spline.cpp b/spline-widget/spline.cpp index 8d7159ee..9faf6647 100644 --- a/spline-widget/spline.cpp +++ b/spline-widget/spline.cpp @@ -386,7 +386,8 @@ void spline::recompute() { QMutexLocker foo(&_mutex); - QList<QPointF> list = s->points; + //QList<QPointF> list = s->points; + QList<QPointF> list; // storing to s->points fires bundle::changed and that leads to an infinite loop // only store if we can't help it |