diff options
Diffstat (limited to 'spline/spline.hpp')
-rw-r--r-- | spline/spline.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/spline/spline.hpp b/spline/spline.hpp index 87489076..e79dd8cc 100644 --- a/spline/spline.hpp +++ b/spline/spline.hpp @@ -109,8 +109,6 @@ class OTR_SPLINE_EXPORT spline : public base_spline QMetaObject::Connection conn_changed, conn_maxx, conn_maxy; mutable std::vector<float> data = std::vector<float>(value_count, float(-16)); mutable QPointF last_input_value; - mutable bool activep = false; - mutable bool validp = false; std::shared_ptr<QObject> ctx { std::make_shared<QObject>() }; @@ -119,6 +117,9 @@ class OTR_SPLINE_EXPORT spline : public base_spline static constexpr inline std::size_t value_count = 4096; + mutable bool activep = false; + mutable bool validp = false; + public: void invalidate_settings(); |