input/cursor: remove gesture listeners in destroy

Part of #4794. Forgot to remove gesture listeners when the
cursor is destroyed.
This commit is contained in:
Benjamin Cheng 2019-12-07 11:21:20 -05:00 committed by Drew DeVault
parent 9ef026e804
commit 2d0f15debb
1 changed files with 6 additions and 0 deletions

View File

@ -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);