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 5c3bccd034b6f0ad78baf8d990b68685a81e16bb
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Sun Dec 1 12:55:20 2024 +0000
cpufreq - settings - make span size bigger in sliders
---
src/modules/cpufreq/e_mod_config.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/modules/cpufreq/e_mod_config.c b/src/modules/cpufreq/e_mod_config.c
index 12f6f8157..044a38556 100644
--- a/src/modules/cpufreq/e_mod_config.c
+++ b/src/modules/cpufreq/e_mod_config.c
@@ -148,6 +148,7 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas EINA_UNUSED,
evas_object_show(o);
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);
elm_slider_step_set(o, (1.0 / 4.0));
@@ -180,6 +181,7 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas EINA_UNUSED,
evas_object_show(o);
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);
elm_slider_step_set(o, (1.0 / 4.0));
@@ -212,6 +214,7 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas EINA_UNUSED,
evas_object_show(o);
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_step_set(o, 0.1);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.