launcher: track the seat in the launcher ctx

This is a more suitable place to track the requesting seat, since we are
able to respond appropriately to destroy notifications.
This commit is contained in:
Ronan Pigott 2024-02-07 16:13:25 -07:00
parent 541e6e260c
commit f6d22f8e68
3 changed files with 31 additions and 6 deletions

View file

@ -3,12 +3,15 @@
#include <stdlib.h>
#include <wayland-server-core.h>
#include "sway/input/seat.h"
struct launcher_ctx {
pid_t pid;
char *fallback_name;
struct wlr_xdg_activation_token_v1 *token;
struct wl_listener token_destroy;
struct sway_seat *seat;
struct wl_listener seat_destroy;
bool activated;