aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xwayland.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-07-12 20:01:33 +0100
committerLibravatar emersion <contact@emersion.fr>2018-07-12 20:01:33 +0100
commit9b16227ec3cfc648f177f186d29b9f0002b7bbde (patch)
treeee6301c035e72ade212ed85c53df867e31bf72cb /sway/desktop/xwayland.c
parentMerge pull request #2250 from RyanDwyer/fix-crash (diff)
downloadsway-9b16227ec3cfc648f177f186d29b9f0002b7bbde.tar.gz
sway-9b16227ec3cfc648f177f186d29b9f0002b7bbde.tar.zst
sway-9b16227ec3cfc648f177f186d29b9f0002b7bbde.zip
Don't disable borders for xwayland floating views
Diffstat (limited to 'sway/desktop/xwayland.c')
-rw-r--r--sway/desktop/xwayland.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 4e5cea7d..460d1cc8 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -246,6 +246,14 @@ static bool wants_floating(struct sway_view *view) {
246 return false; 246 return false;
247} 247}
248 248
249static bool has_client_side_decorations(struct sway_view *view) {
250 if (xwayland_view_from_view(view) == NULL) {
251 return false;
252 }
253 struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface;
254 return surface->decorations != WLR_XWAYLAND_SURFACE_DECORATIONS_ALL;
255}
256
249static void _close(struct sway_view *view) { 257static void _close(struct sway_view *view) {
250 if (xwayland_view_from_view(view) == NULL) { 258 if (xwayland_view_from_view(view) == NULL) {
251 return; 259 return;
@@ -269,6 +277,7 @@ static const struct sway_view_impl view_impl = {
269 .set_tiled = set_tiled, 277 .set_tiled = set_tiled,
270 .set_fullscreen = set_fullscreen, 278 .set_fullscreen = set_fullscreen,
271 .wants_floating = wants_floating, 279 .wants_floating = wants_floating,
280 .has_client_side_decorations = has_client_side_decorations,
272 .close = _close, 281 .close = _close,
273 .destroy = destroy, 282 .destroy = destroy,
274}; 283};