aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell.c
diff options
context:
space:
mode:
authorLibravatar Merlin Lex <merlin@gandalf.ardholen.net>2024-02-11 12:20:15 +0100
committerLibravatar Simon Ser <contact@emersion.fr>2024-02-12 15:36:44 +0100
commit1b5515400d0e10c8e1205b88cfc0e46ecb5faa96 (patch)
treeb6ca6c061c6bb273f5d211dea6e86e3384118a13 /sway/desktop/xdg_shell.c
parentconfig: use format_str() instead of hand-rolled snprintf() (diff)
downloadsway-1b5515400d0e10c8e1205b88cfc0e46ecb5faa96.tar.gz
sway-1b5515400d0e10c8e1205b88cfc0e46ecb5faa96.tar.zst
sway-1b5515400d0e10c8e1205b88cfc0e46ecb5faa96.zip
ext-foreign-toplevel-list: Implement protocol
References: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4543
Diffstat (limited to 'sway/desktop/xdg_shell.c')
-rw-r--r--sway/desktop/xdg_shell.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
index 7cdd97c8..d3f69a15 100644
--- a/sway/desktop/xdg_shell.c
+++ b/sway/desktop/xdg_shell.c
@@ -337,6 +337,7 @@ static void handle_set_app_id(struct wl_listener *listener, void *data) {
337 struct sway_xdg_shell_view *xdg_shell_view = 337 struct sway_xdg_shell_view *xdg_shell_view =
338 wl_container_of(listener, xdg_shell_view, set_app_id); 338 wl_container_of(listener, xdg_shell_view, set_app_id);
339 struct sway_view *view = &xdg_shell_view->view; 339 struct sway_view *view = &xdg_shell_view->view;
340 view_update_app_id(view);
340 view_execute_criteria(view); 341 view_execute_criteria(view);
341} 342}
342 343