diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-10-06 01:51:35 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-06 01:51:35 +0200 | 
| commit | 5d21c33f13f34ed592388512cc092986324c8f35 (patch) | |
| tree | 190b4d83e65459e1958bce8b725667b45c68a8b4 /swaylock/seat.c | |
| parent | c1f09939ae4b5c0554b9f78921e02b2f9550c4e5 (diff) | |
| parent | b0393ae34bf161d769b0761a505cce324d37a2e9 (diff) | |
| download | sway-5d21c33f13f34ed592388512cc092986324c8f35.tar.xz | |
Merge pull request #2771 from RyanDwyer/swaylock-seat-capabilities
swaylock: Support keyboard and pointer disconnects and reconnects
Diffstat (limited to 'swaylock/seat.c')
| -rw-r--r-- | swaylock/seat.c | 16 | 
1 files changed, 12 insertions, 4 deletions
| diff --git a/swaylock/seat.c b/swaylock/seat.c index c2630d87..22dd9360 100644 --- a/swaylock/seat.c +++ b/swaylock/seat.c @@ -145,13 +145,21 @@ static const struct wl_pointer_listener pointer_listener = {  static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat,  		enum wl_seat_capability caps) {  	struct swaylock_state *state = data; +	if (state->pointer) { +		wl_pointer_release(state->pointer); +		state->pointer = NULL; +	} +	if (state->keyboard) { +		wl_keyboard_release(state->keyboard); +		state->keyboard = NULL; +	}  	if ((caps & WL_SEAT_CAPABILITY_POINTER)) { -		struct wl_pointer *pointer = wl_seat_get_pointer(wl_seat); -		wl_pointer_add_listener(pointer, &pointer_listener, NULL); +		state->pointer = wl_seat_get_pointer(wl_seat); +		wl_pointer_add_listener(state->pointer, &pointer_listener, NULL);  	}  	if ((caps & WL_SEAT_CAPABILITY_KEYBOARD)) { -		struct wl_keyboard *keyboard = wl_seat_get_keyboard(wl_seat); -		wl_keyboard_add_listener(keyboard, &keyboard_listener, state); +		state->keyboard = wl_seat_get_keyboard(wl_seat); +		wl_keyboard_add_listener(state->keyboard, &keyboard_listener, state);  	}  } | 
