elm_actionslider: fix signal emission for left selection

this is supposed to be a comparison, not a filter

ref a65cb62853

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D9318
This commit is contained in:
Mike Blumenkrantz 2019-07-12 14:32:36 -04:00 committed by Marcel Hollerbach
parent 66ba42e74d
commit 06ed9b39af
1 changed files with 1 additions and 1 deletions

View File

@ -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)) &&