seoz pushed a commit to branch elementary-1.9.

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

commit 9696eb28918532db51488d24240effb9f746e9dc
Author: Daniel Juyung Seo <[email protected]>
Date:   Sun Apr 27 03:00:11 2014 +0900

    genlist: Removed unnecessary item show call on multi select.
    
    item select will automatically trigger item show.
    @fix
---
 src/lib/elm_genlist.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c
index 6473e15..b17823c 100644
--- a/src/lib/elm_genlist.c
+++ b/src/lib/elm_genlist.c
@@ -2341,7 +2341,6 @@ _item_multi_select_up(Elm_Genlist_Smart_Data *sd)
    else
      {
         elm_genlist_item_selected_set(prev, EINA_TRUE);
-        elm_genlist_item_show(prev, ELM_GENLIST_ITEM_SCROLLTO_IN);
      }
    return EINA_TRUE;
 }
@@ -2375,7 +2374,6 @@ _item_multi_select_down(Elm_Genlist_Smart_Data *sd)
    else
      {
         elm_genlist_item_selected_set(next, EINA_TRUE);
-        elm_genlist_item_show(next, ELM_GENLIST_ITEM_SCROLLTO_IN);
      }
 
    return EINA_TRUE;

-- 


Reply via email to