hermet pushed a commit to branch master.

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

commit d24314e7c4dbbf45c1b57dce7fbf31fde4b4eee3
Author: ChunEon Park <[email protected]>
Date:   Tue Dec 30 15:44:19 2014 +0900

    Revert "genlist: return as possible as soon."
    
    This reverts commit ef56ed167206612f146d2c70f5b35a7bcd62c4c6.
    
    This caused logic change. should not be changed.
---
 src/lib/elm_genlist.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c
index c99f579..383bb15 100644
--- a/src/lib/elm_genlist.c
+++ b/src/lib/elm_genlist.c
@@ -2382,8 +2382,6 @@ _item_multi_select_up(Elm_Genlist_Data *sd)
    if (!sd->multi) return EINA_FALSE;
 
    eo_prev = elm_genlist_item_prev_get(sd->last_selected_item);
-   if (!eo_prev) return EINA_TRUE;
-
    while (eo_prev)
      {
         ELM_GENLIST_ITEM_DATA_GET(eo_prev, prev);
@@ -2393,6 +2391,7 @@ _item_multi_select_up(Elm_Genlist_Data *sd)
           break;
         eo_prev = 
EO_OBJ(ELM_GEN_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev));
      }
+   if (!eo_prev) return EINA_TRUE;
 
    if (elm_genlist_item_selected_get(eo_prev))
      {

-- 


Reply via email to