From a4d601e3d6d6600bc4c26697d282616537ef9b02 Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Tue, 23 Jan 2018 08:16:43 -0500 Subject: [PATCH] decorations: respect motif hints --- rootston/xwayland.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/rootston/xwayland.c b/rootston/xwayland.c index eb84eba0..69c44add 100644 --- a/rootston/xwayland.c +++ b/rootston/xwayland.c @@ -312,9 +312,11 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data) { wl_list_insert(&desktop->views, &view->link); if (!surface->override_redirect) { - view->decorated = true; - view->border_width = 4; - view->titlebar_height = 12; + if (surface->decorations == WLR_XWAYLAND_SURFACE_DECORATIONS_ALL) { + view->decorated = true; + view->border_width = 4; + view->titlebar_height = 12; + } view_setup(view); }