elm_genlist: add missing callback call

Summary:
Added missing "moved" callback call when reordering items with keyboard
"up" and "down" arrows

@fix

Reviewers: cedric, raster, seoz

Reviewed By: seoz

Subscribers: reutskiy.v.v

Differential Revision: https://phab.enlightenment.org/D1818
This commit is contained in:
Andrii Kroitor 2014-12-26 14:21:02 +09:00 committed by Daniel Juyung Seo
parent c55e8ccac4
commit 8148de6e17
1 changed files with 1 additions and 0 deletions

View File

@ -2783,6 +2783,7 @@ _item_swap_cb(void *data, double pos)
elm_genlist_item_bring_in((Elm_Object_Item *)sd->reorder.it2, ELM_GENLIST_ITEM_SCROLLTO_IN);
_anim_end(sd);
evas_object_smart_callback_call(sd->obj, SIG_ITEM_REORDER_STOP, sd->reorder.it1);
evas_object_smart_callback_call(sd->obj, SIG_MOVED, EO_OBJ(sd->reorder.it1));
sd->reorder.running = EINA_FALSE;
}