diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-05 00:17:19 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-05 12:33:08 +0100 |
commit | 2360cac7e6ea256495f16bd766eecda03fa71176 (patch) | |
tree | c58ccbca65b93155e8eba37b473ed6d830e808a2 | |
parent | b1564d80d44821c31fc8188105be548984cdecd4 (diff) |
add a couple todo comments
-rw-r--r-- | gui/mapping-dialog.cpp | 1 | ||||
-rw-r--r-- | spline/spline.hpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gui/mapping-dialog.cpp b/gui/mapping-dialog.cpp index cdbf532e..551fae3d 100644 --- a/gui/mapping-dialog.cpp +++ b/gui/mapping-dialog.cpp @@ -14,6 +14,7 @@ using namespace options; +// todo speed up redraw for red dot indicator mapping_dialog::mapping_dialog(Mappings& m) : m(m), widgets{} { ui.setupUi(this); diff --git a/spline/spline.hpp b/spline/spline.hpp index 76ac79b8..1098ed6c 100644 --- a/spline/spline.hpp +++ b/spline/spline.hpp @@ -106,6 +106,7 @@ struct OTR_SPLINE_EXPORT base_spline : base_spline_, spline_modify_mixin, spline class OTR_SPLINE_EXPORT spline : public base_spline { using f = float; + // todo change to double double bucket_size_coefficient(const QList<QPointF>& points) const; void update_interp_data() const; |