aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Primak <vyivel@eclair.cafe>2024-08-02 17:49:44 +0300
committerSimon Ser <contact@emersion.fr>2024-08-02 16:57:01 +0200
commit9bb45a403758c8606fe9a7f0b5b5316bae1a12dd (patch)
tree9ca1cecc238ad0a501d3656b5653854825544799
parent7e74a4914261cf32c45017521960adf7ff6dac8f (diff)
xwayland: chase wlr_xwayland_surface_set_maximized() change
See https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4670.
-rw-r--r--sway/desktop/xwayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index e4d54ca6..805c9b9d 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -299,7 +299,7 @@ static void set_tiled(struct sway_view *view, bool tiled) {
return;
}
struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface;
- wlr_xwayland_surface_set_maximized(surface, tiled);
+ wlr_xwayland_surface_set_maximized(surface, tiled, tiled);
}
static void set_fullscreen(struct sway_view *view, bool fullscreen) {