This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/dimmus/meson
in repository efl.
View the commit online.
commit 4438eba8f9a138e9a25c47ad90531c5544e95689
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon May 5 10:40:38 2025 +0100
efl ui slider - fix silly code that would have always assumed disabled
fixes #89
@fix
---
src/lib/elementary/efl_ui_slider_interval.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/elementary/efl_ui_slider_interval.c b/src/lib/elementary/efl_ui_slider_interval.c
index 94478d9f3c..32b446b9a9 100644
--- a/src/lib/elementary/efl_ui_slider_interval.c
+++ b/src/lib/elementary/efl_ui_slider_interval.c
@@ -713,7 +713,7 @@ _key_action_drag(Evas_Object *obj, const char *params)
EOLIAN static Eina_Bool
_efl_ui_slider_interval_efl_ui_widget_on_access_activate(Eo *obj, Efl_Ui_Slider_Interval_Data *sd, Efl_Ui_Activate act)
{
- if (efl_ui_widget_disabled_get) return EINA_FALSE;
+ if (efl_ui_widget_disabled_get(obj)) return EINA_FALSE;
if (act == EFL_UI_ACTIVATE_DEFAULT) return EINA_FALSE;
if ((act == EFL_UI_ACTIVATE_UP) ||
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.