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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 4abffb25..aa46940d 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -1464,10 +1464,9 @@ void seatop_pointer_axis(struct sway_seat *seat,
1464} 1464}
1465 1465
1466void seatop_tablet_tool_motion(struct sway_seat *seat, 1466void seatop_tablet_tool_motion(struct sway_seat *seat,
1467 struct sway_tablet *tablet, struct sway_tablet_tool *tool, 1467 struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy) {
1468 uint32_t time_msec, double dx, double dy) {
1469 if (seat->seatop_impl->tablet_tool_motion) { 1468 if (seat->seatop_impl->tablet_tool_motion) {
1470 seat->seatop_impl->tablet_tool_motion(seat, tablet, tool, time_msec, dx, dy); 1469 seat->seatop_impl->tablet_tool_motion(seat, tool, time_msec, dx, dy);
1471 } else { 1470 } else {
1472 seatop_pointer_motion(seat, time_msec, dx, dy); 1471 seatop_pointer_motion(seat, time_msec, dx, dy);
1473 } 1472 }