raster pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=d27b9ddf921c83101afbd2e274684df46110f741

commit d27b9ddf921c83101afbd2e274684df46110f741
Author: Umesh Tanwar <umesh.tan...@samsung.com>
Date:   Fri May 1 12:05:07 2015 +0900

    Genlist: fix multiselect for ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY select_mode
    
    Summary:
    fix the _item_multi_select_down() function for
    ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY select_mode.
    _item_multi_select_up is right, but _item_multi_select_down is wrong.
    So fixed this.
    
    Signed-off-by: Umesh Tanwar <umesh.tan...@samsung.com>
    
    @fix
    
    Reviewers: Hermet, raster
    
    Reviewed By: raster
    
    Subscribers: sachin.dev, singh.amitesh
    
    Differential Revision: https://phab.enlightenment.org/D2452
---
 src/lib/elm_genlist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c
index 92101fc..2e47b6a 100644
--- a/src/lib/elm_genlist.c
+++ b/src/lib/elm_genlist.c
@@ -2461,7 +2461,7 @@ _item_multi_select_down(Elm_Genlist_Data *sd)
    while ((eo_next))
      {
         ELM_GENLIST_ITEM_DATA_GET(eo_next, next);
-        if ((_is_no_select(next)) && (!elm_object_item_disabled_get(eo_next)))
+        if ((!_is_no_select(next)) && (!elm_object_item_disabled_get(eo_next)))
           break;
         eo_next = 
EO_OBJ(ELM_GEN_ITEM_FROM_INLIST(EINA_INLIST_GET(next)->next));
      }

-- 


Reply via email to