aboutsummaryrefslogtreecommitdiffstats
path: root/swaylock/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaylock/main.c')
-rw-r--r--swaylock/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/swaylock/main.c b/swaylock/main.c
index f2bb5c3e..f88663c2 100644
--- a/swaylock/main.c
+++ b/swaylock/main.c
@@ -279,7 +279,10 @@ static void handle_global(void *data, struct wl_registry *registry,
279 } else if (strcmp(interface, wl_seat_interface.name) == 0) { 279 } else if (strcmp(interface, wl_seat_interface.name) == 0) {
280 struct wl_seat *seat = wl_registry_bind( 280 struct wl_seat *seat = wl_registry_bind(
281 registry, name, &wl_seat_interface, 3); 281 registry, name, &wl_seat_interface, 3);
282 wl_seat_add_listener(seat, &seat_listener, state); 282 struct swaylock_seat *swaylock_seat =
283 calloc(1, sizeof(struct swaylock_seat));
284 swaylock_seat->state = state;
285 wl_seat_add_listener(seat, &seat_listener, swaylock_seat);
283 } else if (strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) { 286 } else if (strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) {
284 state->layer_shell = wl_registry_bind( 287 state->layer_shell = wl_registry_bind(
285 registry, name, &zwlr_layer_shell_v1_interface, 1); 288 registry, name, &zwlr_layer_shell_v1_interface, 1);