seoz pushed a commit to branch master.

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

commit f6893a3e0cb97fbc93429cb3310d4da180966893
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 28cd2f1..bf9298f 100644
--- a/src/lib/elm_genlist.c
+++ b/src/lib/elm_genlist.c
@@ -2306,7 +2306,6 @@ _item_multi_select_up(Elm_Genlist_Data *sd)
    else
      {
         elm_genlist_item_selected_set(prev, EINA_TRUE);
-        elm_genlist_item_show(prev, ELM_GENLIST_ITEM_SCROLLTO_IN);
      }
    return EINA_TRUE;
 }
@@ -2338,7 +2337,6 @@ _item_multi_select_down(Elm_Genlist_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