diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2019-03-14 13:53:46 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2019-03-14 13:55:39 +0900 |
commit | 2586b2d3138c0f6b6735eb77cf1ebcce47ca1a2d (patch) | |
tree | 9bc5d3a3c02d58971a9cfaac488810ff745737b5 /src/applist.hpp | |
parent | a0fa6394c0d8b7997343d6f2a44d9c2868f4be5f (diff) |
Fix xdg-runcher doesn't show upflounder_6.0.5flounder/6.0.56.0.5flounder
xdg-runcher calls "subscribe" before requestSurface, then
windowmanager reject it because WMClient object is not created yet.
This patch changes to register WMClient if it is not created
when App calls "subscribe".
Application doesn't need to care about the order of "requestSurface" and "subscribe".
This patch is backport of master.
Bug-AGL: SPEC-2218
Change-Id: I448d84889a24647d4e620c4b8f041087e856da32
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/applist.hpp')
-rw-r--r-- | src/applist.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/applist.hpp b/src/applist.hpp index 085504a..0fe3bbd 100644 --- a/src/applist.hpp +++ b/src/applist.hpp @@ -45,6 +45,7 @@ class AppList void addClient(const std::string &appid, unsigned layer, unsigned surface, const std::string &role); void addClient(const std::string &appid, unsigned layer, const std::string &role); + void addClient(const std::string &appid); void removeClient(const std::string &appid); bool contains(const std::string &appid) const; int countClient() const; |