aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 6b95e46a..bcb89b48 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -1638,6 +1638,12 @@ void seatop_touch_down(struct sway_seat *seat, struct wlr_touch_down_event *even
1638 } 1638 }
1639} 1639}
1640 1640
1641void seatop_touch_cancel(struct sway_seat *seat, struct wlr_touch_cancel_event *event) {
1642 if (seat->seatop_impl->touch_cancel) {
1643 seat->seatop_impl->touch_cancel(seat, event);
1644 }
1645}
1646
1641void seatop_tablet_tool_tip(struct sway_seat *seat, 1647void seatop_tablet_tool_tip(struct sway_seat *seat,
1642 struct sway_tablet_tool *tool, uint32_t time_msec, 1648 struct sway_tablet_tool *tool, uint32_t time_msec,
1643 enum wlr_tablet_tool_tip_state state) { 1649 enum wlr_tablet_tool_tip_state state) {