commit a47f8ef478cd6ee26b0a362884e78b2190169d39
parent 06e97e51af27bb282cb6e833c0fad879323167fa
Author: Tassilo Horn <tsdh@gnu.org>
Date: Thu, 7 Oct 2021 20:22:56 +0200
Fix compile after wlroots commit c3e54021f8bbf3ec1c1e5906459be0ae85f5fb8c
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
@@ -436,7 +436,7 @@ static void handle_map(struct wl_listener *listener, void *data) {
if (view->xdg_decoration) {
enum wlr_xdg_toplevel_decoration_v1_mode mode =
- view->xdg_decoration->wlr_xdg_decoration->client_pending_mode;
+ view->xdg_decoration->wlr_xdg_decoration->requested_mode;
csd = mode == WLR_XDG_TOPLEVEL_DECORATION_V1_MODE_CLIENT_SIDE;
} else {
struct sway_server_decoration *deco =
diff --git a/sway/xdg_decoration.c b/sway/xdg_decoration.c
@@ -27,7 +27,7 @@ static void xdg_decoration_handle_request_mode(struct wl_listener *listener,
enum wlr_xdg_toplevel_decoration_v1_mode mode =
WLR_XDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE;
enum wlr_xdg_toplevel_decoration_v1_mode client_mode =
- deco->wlr_xdg_decoration->client_pending_mode;
+ deco->wlr_xdg_decoration->requested_mode;
bool floating;
if (view->container) {