From fd43050842ecf063f3700243478c009d43fccacc Mon Sep 17 00:00:00 2001 From: Paul Wieland Date: Sun, 10 Nov 2024 11:41:55 -0500 Subject: [PATCH] closing delay max reduce to increase slider resolution --- components/ratgdo/number/ratgdo_number.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ratgdo/number/ratgdo_number.cpp b/components/ratgdo/number/ratgdo_number.cpp index e3fd1a1..da99b5d 100644 --- a/components/ratgdo/number/ratgdo_number.cpp +++ b/components/ratgdo/number/ratgdo_number.cpp @@ -91,7 +91,7 @@ namespace ratgdo { } else if (this->number_type_ == RATGDO_CLOSING_DELAY) { this->traits.set_step(1); this->traits.set_min_value(0.0); - this->traits.set_max_value(180.0); + this->traits.set_max_value(60.0); } else if (this->number_type_ == RATGDO_ROLLING_CODE_COUNTER) { this->traits.set_max_value(0xfffffff); } else if (this->number_type_ == RATGDO_CLIENT_ID) {