This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository enlightenment.

View the commit online.

commit a875190e4ab505f03c277901acc22a4e827b19a2
Author: Carsten Haitzler <[email protected]>
AuthorDate: Sun Jan 25 22:52:52 2026 +0000

    cpufreq - allow up to 10s interval between polls, not just 1s
---
 src/modules/cpufreq/e_mod_config.c | 2 +-
 src/modules/cpufreq/e_mod_main.c   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/cpufreq/e_mod_config.c b/src/modules/cpufreq/e_mod_config.c
index 02055a86f..17491fb47 100644
--- a/src/modules/cpufreq/e_mod_config.c
+++ b/src/modules/cpufreq/e_mod_config.c
@@ -215,7 +215,7 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas EINA_UNUSED,
   o = elm_slider_add(win);
   elm_slider_span_size_set(o, ELM_SCALE_SIZE(160));
   elm_slider_horizontal_set(o, EINA_TRUE);
-  elm_slider_min_max_set(o, 0.1, 1.0);
+  elm_slider_min_max_set(o, 0.1, 10.0);
   elm_slider_step_set(o, 0.1);
   elm_slider_indicator_show_set(o, EINA_FALSE);
   elm_slider_unit_format_set(o, "%1.1f sec");
diff --git a/src/modules/cpufreq/e_mod_main.c b/src/modules/cpufreq/e_mod_main.c
index 16886a604..b04dce3ba 100644
--- a/src/modules/cpufreq/e_mod_main.c
+++ b/src/modules/cpufreq/e_mod_main.c
@@ -569,7 +569,7 @@ e_modapi_init(E_Module *m)
         cpufreq_config->power_lo       = 33;
         cpufreq_config->power_hi       = 67;
      }
-   E_CONFIG_LIMIT(cpufreq_config->check_interval, 0.1, 1.0);
+   E_CONFIG_LIMIT(cpufreq_config->check_interval, 0.1, 10.0);
    E_CONFIG_LIMIT(cpufreq_config->power_lo, 0, 100);
    E_CONFIG_LIMIT(cpufreq_config->power_hi, 0, 100);
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to