summaryrefslogtreecommitdiff
path: root/ivi-shell
diff options
context:
space:
mode:
authorUcan, Emre (ADITG/SW1) <eucan@de.adit-jv.com>2017-01-18 15:25:31 +0000
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2017-01-27 16:43:47 +0200
commit847c32d34b213d2a5681128e0830e881e28d3983 (patch)
tree57b22cc520147eb07749a01d56871e06de64a4cd /ivi-shell
parent67ed902f4b841bff7b7326e17afbf1fc72976bb0 (diff)
ivi-shell: don't check layer is already on the screen
If a layer is removed from a screen's render order list, but the changes are not commited. Then, the layer could not be added to the same screen. Because on_screen property of the layer is only changed in ivi_layout_commit_changes API, when active render order of the screen is changed. It is not possible to change the order of layers in a screen without clearing and commiting the changes before. This patch fixes this issue. After this patch, the pending render order list of a screen is always modified regardless of its active render order list. Signed-off-by: Emre Ucan <eucan@de.adit-jv.com> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Diffstat (limited to 'ivi-shell')
-rw-r--r--ivi-shell/ivi-layout.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/ivi-shell/ivi-layout.c b/ivi-shell/ivi-layout.c
index 40881da7..2b218331 100644
--- a/ivi-shell/ivi-layout.c
+++ b/ivi-shell/ivi-layout.c
@@ -1646,11 +1646,6 @@ ivi_layout_screen_add_layer(struct weston_output *output,
iviscrn = get_screen_from_output(output);
- if (addlayer->on_screen == iviscrn) {
- weston_log("ivi_layout_screen_add_layer: addlayer is already available\n");
- return IVI_SUCCEEDED;
- }
-
wl_list_remove(&addlayer->pending.link);
wl_list_insert(&iviscrn->pending.layer_list, &addlayer->pending.link);