Dispatch wayland frame callbacks in the correct order

The protocol says they should be dispatched in the order they're
registered, so switch to list append instead of list prepend.
This commit is contained in:
Derek Foreman 2017-02-08 13:25:09 -06:00
parent b994562776
commit 2021480748
1 changed files with 1 additions and 1 deletions

View File

@ -1690,7 +1690,7 @@ _e_comp_wl_surface_cb_frame(struct wl_client *client, struct wl_resource *resour
wl_resource_set_implementation(res, NULL, ec, _e_comp_wl_frame_cb_destroy);
ec->comp_data->pending.frames =
eina_list_prepend(ec->comp_data->pending.frames, res);
eina_list_append(ec->comp_data->pending.frames, res);
}
static void