diff options
Diffstat (limited to 'spline/spline.cpp')
-rw-r--r-- | spline/spline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spline/spline.cpp b/spline/spline.cpp index e32cfd0c..ad2ea6b3 100644 --- a/spline/spline.cpp +++ b/spline/spline.cpp @@ -348,7 +348,7 @@ void spline::set_bundle(bundle b, const QString& axis_name, Axis axis) if (b) { connection = QObject::connect(b.get(), &bundle_::changed, - s.get(), [&]() { invalidate_settings(); }); + s.get(), [&] { invalidate_settings(); }); // this isn't strictly necessary for the spline but helps the widget conn_maxx = QObject::connect(&s->opts.clamp_x_, base_value::value_changed<int>(), |