sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 3444ce730230d281c9db49e2c808710192e69888
parent d6f279902a094230633cde05f9677da67289dd28
Author: Moon Sungjoon <sumoon@seoulsaram.org>
Date:   Sun,  6 Mar 2022 01:47:58 +0900

sway/input: destroy sway_switch properly

Fix: #6861
Added seat_device_destroy function to seat_device_destroy function.

Diffstat:
Msway/input/seat.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/sway/input/seat.c b/sway/input/seat.c @@ -42,6 +42,7 @@ static void seat_device_destroy(struct sway_seat_device *seat_device) { sway_keyboard_destroy(seat_device->keyboard); sway_tablet_destroy(seat_device->tablet); sway_tablet_pad_destroy(seat_device->tablet_pad); + sway_switch_destroy(seat_device->switch_device); wlr_cursor_detach_input_device(seat_device->sway_seat->cursor->cursor, seat_device->input_device->wlr_device); wl_list_remove(&seat_device->link);