From 2586b2d3138c0f6b6735eb77cf1ebcce47ca1a2d Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Thu, 14 Mar 2019 13:53:46 +0900 Subject: Fix xdg-runcher doesn't show up 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 --- src/wm_client.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/wm_client.hpp') diff --git a/src/wm_client.hpp b/src/wm_client.hpp index 3ffa786..ca4fd3d 100644 --- a/src/wm_client.hpp +++ b/src/wm_client.hpp @@ -45,7 +45,9 @@ class WMClient std::string appID() const; std::string role() const; + void setRole(const std::string& role); unsigned layerID() const; + void setLayerID(unsigned id); unsigned surfaceID() const; void registerSurface(unsigned surface); std::string area() const {return this->app_area;}; -- cgit 1.2.3-korg