From c3cd225a20d731af259f69ad0b3e509b665ab3a8 Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Mon, 29 Aug 2022 08:11:18 +0900 Subject: [PATCH] e_policy_wl: support desktop type window Change-Id: Ib77bfd12ba4268a7f102779ec0fba8597694e437 --- src/bin/e_policy_wl.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/bin/e_policy_wl.c b/src/bin/e_policy_wl.c index 236a739..41d15ef 100644 --- a/src/bin/e_policy_wl.c +++ b/src/bin/e_policy_wl.c @@ -1799,6 +1799,14 @@ _tzpol_iface_cb_type_set(struct wl_client *client EINA_UNUSED, struct wl_resourc win_type = E_WINDOW_TYPE_DIALOG; break; + case TIZEN_POLICY_WIN_TYPE_DESKTOP: + win_type = E_WINDOW_TYPE_DESKTOP; + if (ec->layer != E_LAYER_CLIENT_DESKTOP) + { + e_client_layer_set(ec, E_LAYER_CLIENT_DESKTOP); + } + break; + default: return; } -- 2.7.4