The view system was already apapted the request.
But evas cannot be adapted previous command cause of intercept call.
So erase duplicate execution prevention condition to execute evas_object API again.
Change-Id: Idb56acc3f894136ca31db04c681cb84885b783b3
return;
top = wl_container_of(view->parent->children.prev, top, link);
- if (view == top)
- return;
wl_list_remove(&view->link);
wl_list_insert(&top->link, &view->link);
return;
bottom = wl_container_of(view->parent->children.next, bottom, link);
- if (view == bottom)
- return;
wl_list_remove(&view->link);
wl_list_insert(bottom->link.prev, &view->link);