zmike pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=23bbf2bf3ae7c45d08e02ba23e0ced69c99f65c6

commit 23bbf2bf3ae7c45d08e02ba23e0ced69c99f65c6
Author: WooHyun Jung <wh0705.j...@samsung.com>
Date:   Thu Sep 26 09:00:09 2019 -0400

    efl_ui_image: fix a wrong return value of legacy API
    
    Summary:
    elm_image_animated_play_get needs to return opposite
    value of animated_PAUSED_get.
    
    Reviewers: zmike, segfaultxavi, bu5hm4n
    
    Reviewed By: zmike, segfaultxavi
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D10186
---
 src/lib/elementary/efl_ui_image.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/efl_ui_image.c 
b/src/lib/elementary/efl_ui_image.c
index f732d44add..64c81247b8 100644
--- a/src/lib/elementary/efl_ui_image.c
+++ b/src/lib/elementary/efl_ui_image.c
@@ -1911,7 +1911,7 @@ elm_image_animated_play_get(const Elm_Image *obj)
 {
    Efl_Ui_Image_Data *sd = efl_data_scope_get(obj, MY_CLASS);
    if (!sd) return EINA_FALSE;
-   return _efl_ui_image_animated_paused_get_internal(obj, sd);
+   return !_efl_ui_image_animated_paused_get_internal(obj, sd);
 }
 
 EOLIAN static Eina_Bool

-- 


Reply via email to