aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell_v6.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-03-27 13:28:43 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-03-27 13:28:43 -0400
commitcbb2e3308e66c2e5b1852c7475e3f40a5bbdca1c (patch)
treef4207749074a611f47ebd1a69bd0bb25923351dc /sway/desktop/xdg_shell_v6.c
parentMerge pull request #1626 from emersion/wlroots-update (diff)
downloadsway-cbb2e3308e66c2e5b1852c7475e3f40a5bbdca1c.tar.gz
sway-cbb2e3308e66c2e5b1852c7475e3f40a5bbdca1c.tar.zst
sway-cbb2e3308e66c2e5b1852c7475e3f40a5bbdca1c.zip
Update API to match latest wlroots
Diffstat (limited to 'sway/desktop/xdg_shell_v6.c')
-rw-r--r--sway/desktop/xdg_shell_v6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index 7371b829..7b550b30 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -63,7 +63,7 @@ static void close(struct sway_view *view) {
63 } 63 }
64 struct wlr_xdg_surface_v6 *surface = view->wlr_xdg_surface_v6; 64 struct wlr_xdg_surface_v6 *surface = view->wlr_xdg_surface_v6;
65 if (surface->role == WLR_XDG_SURFACE_V6_ROLE_TOPLEVEL) { 65 if (surface->role == WLR_XDG_SURFACE_V6_ROLE_TOPLEVEL) {
66 wlr_xdg_toplevel_v6_send_close(surface); 66 wlr_xdg_surface_v6_send_close(surface);
67 } 67 }
68} 68}
69 69