zmike pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=4ef00bb81931f4eae1894f7a1dfa8b09134d42fb

commit 4ef00bb81931f4eae1894f7a1dfa8b09134d42fb
Author: SangHyeon Jade Lee <[email protected]>
Date:   Mon Feb 25 08:00:35 2019 -0500

    genlist: fix wrong returns in window tooltip set.
    
    Summary:
    tooltip_window_mode_set returns input disable value not a successibility of 
API actions.
    when user set window_mode to false, it must return false regardless of item 
view existence.
    
    Reviewers: Hermet, woohyun, eagleeye, cedric, zmike
    
    Subscribers: zmike, cedric, #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D7912
---
 src/lib/elementary/elm_genlist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/elm_genlist.c b/src/lib/elementary/elm_genlist.c
index 004e1e2be7..e6f4ec1d8c 100644
--- a/src/lib/elementary/elm_genlist.c
+++ b/src/lib/elementary/elm_genlist.c
@@ -7644,7 +7644,7 @@ 
_elm_genlist_item_elm_widget_item_tooltip_window_mode_set(Eo *eo_it, Elm_Gen_Ite
         return ret;
      }
 
-   return EINA_TRUE;
+   return disable;
 }
 
 EAPI Eina_Bool

-- 


Reply via email to