diff options
author | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2017-06-27 18:07:03 +0900 |
---|---|---|
committer | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2017-06-27 18:30:51 +0900 |
commit | f95ec0c0142472aeaa1de8994ee4ad860fd3ad54 (patch) | |
tree | 2312285a396bd1ef295f8a89f5dec27a943103c8 /interfaces | |
parent | e7133222e8a753fb8511d8257f4621d2c7118e61 (diff) |
Fix issue of app's unexpected stop while background
Current window manager make own ivi-layer to each application
and adjust the order when rendering (screen's render order of
layers).
E.g. When showing apps launcher, window manager has only 1
ivi-layer for homescreen under screen 0. When showing an app,
window manager add 1 ivi-layer for it and set render order
of 2 layers, front: app's and back: homescreen layer.
And when app hides, it's layer is removed from render order.
But if removed from render order, excecuting QML also stopped.
It is caused why the media player doesn't play next song
when it is not shown.
This patch changes how to make render order to keep media
player/navigation's layer in render order even when it is
not shown.
Bug-AGL: SPEC-395
Change-Id: I01f9705a8d2f6c6fbee317b5297ce8f3715a7d39
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'interfaces')
-rw-r--r-- | interfaces/windowmanager.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/interfaces/windowmanager.xml b/interfaces/windowmanager.xml index e3c6df3..f288b32 100644 --- a/interfaces/windowmanager.xml +++ b/interfaces/windowmanager.xml @@ -191,6 +191,7 @@ Show layer for application . --> <method name="showAppLayer"> + <arg name="name" type="s" direction="in"/> <arg name="pid" type="i" direction="in"/> </method> <!-- |