aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop/xwayland.c
diff options
context:
space:
mode:
authorRyan Dwyer <RyanDwyer@users.noreply.github.com>2018-07-13 08:28:34 +1000
committerGitHub <noreply@github.com>2018-07-13 08:28:34 +1000
commit683a307151764f7cad38ff12c4175e8e0cf94226 (patch)
tree21c8d74ed97be81ed731f92443a4cd726ee8ac4b /sway/desktop/xwayland.c
parentda8149c066c8bd3fe662337159081600a93950f7 (diff)
parent53133fdefb1cdd97d21b3d5424868b70642d46dc (diff)
downloadsway-683a307151764f7cad38ff12c4175e8e0cf94226.tar.xz
Merge pull request #2255 from emersion/xwayland-floating-borders
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) {
return false;
}
+static bool has_client_side_decorations(struct sway_view *view) {
+ if (xwayland_view_from_view(view) == NULL) {
+ return false;
+ }
+ struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface;
+ return surface->decorations != WLR_XWAYLAND_SURFACE_DECORATIONS_ALL;
+}
+
static void _close(struct sway_view *view) {
if (xwayland_view_from_view(view) == NULL) {
return;
@@ -269,6 +277,7 @@ static const struct sway_view_impl view_impl = {
.set_tiled = set_tiled,
.set_fullscreen = set_fullscreen,
.wants_floating = wants_floating,
+ .has_client_side_decorations = has_client_side_decorations,
.close = _close,
.destroy = destroy,
};