summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaehyub Kim <taehyub.kim@samsung.com>2019-01-28 16:58:35 +0900
committerJaehyun Cho <jae_hyun.cho@samsung.com>2019-01-28 17:09:42 +0900
commit4704fda84db57b49a9b178712c80c0792f985ef1 (patch)
tree700c76a2fb5d1acc8d580c1c7e4137819421c349
parentda36a87bb30170f8235fc9d6b464d92000681681 (diff)
downloadefl-4704fda84db57b49a9b178712c80c0792f985ef1.tar.gz
efl_ui_dnd: fix the wrong parameter passing
Summary: fix the wrong parameter passing Reviewers: Jaehyun_Cho Reviewed By: Jaehyun_Cho Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D7797
-rw-r--r--src/lib/elementary/efl_ui_dnd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/efl_ui_dnd.c b/src/lib/elementary/efl_ui_dnd.c
index c368beb0d1..db13fbf242 100644
--- a/src/lib/elementary/efl_ui_dnd.c
+++ b/src/lib/elementary/efl_ui_dnd.c
@@ -820,7 +820,7 @@ elm_drag_item_container_add(Evas_Object *obj, double anim_tm, double tm_to_drag,
di_list = eina_list_append(di_list, di);
efl_key_data_set(obj, "__cont_drag_item", di_list);
evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL, _cont_drag_obj_del_cb, NULL);
- efl_ui_selection_manager_container_drag_item_add(sel_man, obj, anim_tm, tm_to_drag,
+ efl_ui_selection_manager_container_drag_item_add(sel_man, obj, tm_to_drag, anim_tm,
di, _cont_drag_data_func, NULL,
di, _cont_drag_item_func, NULL,
di, _cont_drag_icon_create, NULL,