aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rootston/xwayland.c8
1 files 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);
}