diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-10-01 23:59:01 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-10-02 00:01:38 +0200 |
commit | a42a6ec0d7f99de0aabf9c9732303ded426e843f (patch) | |
tree | bd84defd132d3e71fc046df54a2a2e096527d37b | |
parent | 2d5e75fda139ce5e0b9285f558ee1f575e12c9dc (diff) |
tracker/pt: allow for even more filtering
-rw-r--r-- | tracker-pt/FTNoIR_PT_Controls.ui | 2 | ||||
-rw-r--r-- | tracker-pt/pt-settings.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tracker-pt/FTNoIR_PT_Controls.ui b/tracker-pt/FTNoIR_PT_Controls.ui index 08c3807b..edb401da 100644 --- a/tracker-pt/FTNoIR_PT_Controls.ui +++ b/tracker-pt/FTNoIR_PT_Controls.ui @@ -736,7 +736,7 @@ <number>0</number> </property> <property name="maximum"> - <number>300</number> + <number>400</number> </property> <property name="singleStep"> <number>1</number> diff --git a/tracker-pt/pt-settings.hpp b/tracker-pt/pt-settings.hpp index a97fa73e..876ba573 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, 3 } }; + value<slider_value> point_filter_coefficient { b, "point-filter-coefficient", { 1.0, 0, 4 } }; explicit pt_settings(const QString& name) : opts(name) {} }; |