diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2024-08-02 17:49:44 +0300 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2024-08-02 17:49:44 +0300 |
| commit | 3537a8ae0e3c541b8a3c961830f8b5cbbb971f6d (patch) | |
| tree | 9ca1cecc238ad0a501d3656b5653854825544799 | |
| parent | 547121ed4ddb49ff46c34bf89c39147b77249123 (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.c | 2 |
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) { |
