bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=06ed9b39afcb75704fddeba3213618beb8a2b3fa

commit 06ed9b39afcb75704fddeba3213618beb8a2b3fa
Author: Mike Blumenkrantz <zm...@samsung.com>
Date:   Fri Jul 12 14:32:36 2019 -0400

    elm_actionslider: fix signal emission for left selection
    
    this is supposed to be a comparison, not a filter
    
    ref a65cb62853c344bcdc34af589a4199488f9025e8
    
    Reviewed-by: Marcel Hollerbach <m...@marcel-hollerbach.de>
    Differential Revision: https://phab.enlightenment.org/D9318
---
 src/lib/elementary/elm_actionslider.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/elm_actionslider.c 
b/src/lib/elementary/elm_actionslider.c
index d4e3ca129b..07f45ed8c8 100644
--- a/src/lib/elementary/elm_actionslider.c
+++ b/src/lib/elementary/elm_actionslider.c
@@ -237,7 +237,7 @@ _button_animator(void *data)
 
         _text_get(obj, &left, &right, &center);
 
-        if ((!EINA_DBL_EQ(sd->final_position, 0)) &&
+        if ((EINA_DBL_EQ(sd->final_position, 0)) &&
             (sd->enabled_position & ELM_ACTIONSLIDER_LEFT))
           evas_object_smart_callback_call(obj, "selected",(char *)left);
         else if ((EINA_DBL_EQ(sd->final_position, 0.5)) &&

-- 


Reply via email to