diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-10-01 14:24:08 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-10-01 14:24:08 +0200 |
commit | a8868f92ac8320143dea7f56b9072936ed3ca6be (patch) | |
tree | d0be00c2771180c6d586389fbfbd59b0bccc781a /tracker-pt/pt-settings.hpp | |
parent | 0aede8eb04cd0873094852580b6c98b5b7722b7c (diff) |
tracker/pt: fix scale on the point filter
Diffstat (limited to 'tracker-pt/pt-settings.hpp')
-rw-r--r-- | tracker-pt/pt-settings.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/pt-settings.hpp b/tracker-pt/pt-settings.hpp index 8aa3c39b..a97fa73e 100644 --- a/tracker-pt/pt-settings.hpp +++ b/tracker-pt/pt-settings.hpp @@ -69,7 +69,7 @@ struct pt_settings final : options::opts value<slider_value> threshold_slider { b, "threshold-slider", { 128, 0, 255 } }; value<bool> enable_point_filter{ b, "enable-point-filter", false }; - value<slider_value> point_filter_coefficient { b, "point-filter-coefficient", { 1.5, 0, 4 } }; + value<slider_value> point_filter_coefficient { b, "point-filter-coefficient", { 1.5, 0, 3 } }; explicit pt_settings(const QString& name) : opts(name) {} }; |