From 2d0f15debb0bf354eecc5ac6bb95bfaf6ba584ac Mon Sep 17 00:00:00 2001 From: Benjamin Cheng Date: Sat, 7 Dec 2019 11:21:20 -0500 Subject: input/cursor: remove gesture listeners in destroy Part of #4794. Forgot to remove gesture listeners when the cursor is destroyed. --- sway/input/cursor.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'sway/input/cursor.c') diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 6d88cd54..83b5212d 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -840,6 +840,12 @@ void sway_cursor_destroy(struct sway_cursor *cursor) { wl_event_source_remove(cursor->hide_source); + wl_list_remove(&cursor->pinch_begin.link); + wl_list_remove(&cursor->pinch_update.link); + wl_list_remove(&cursor->pinch_end.link); + wl_list_remove(&cursor->swipe_begin.link); + wl_list_remove(&cursor->swipe_update.link); + wl_list_remove(&cursor->swipe_end.link); wl_list_remove(&cursor->motion.link); wl_list_remove(&cursor->motion_absolute.link); wl_list_remove(&cursor->button.link); -- cgit v1.2.3-54-g00ecf