mirror of
https://github.com/swaywm/sway.git
synced 2026-04-22 06:46:27 -04:00
input: remove motion deltas from seatop callbacks
Straightforward cleanup, they haven't been used for a while.
This commit is contained in:
parent
96578aa91e
commit
8c12e71a66
9 changed files with 19 additions and 31 deletions
|
|
@ -557,8 +557,7 @@ static void check_focus_follows_mouse(struct sway_seat *seat,
|
|||
}
|
||||
}
|
||||
|
||||
static void handle_pointer_motion(struct sway_seat *seat, uint32_t time_msec,
|
||||
double dx, double dy) {
|
||||
static void handle_pointer_motion(struct sway_seat *seat, uint32_t time_msec) {
|
||||
struct seatop_default_event *e = seat->seatop_data;
|
||||
struct sway_cursor *cursor = seat->cursor;
|
||||
|
||||
|
|
@ -592,7 +591,7 @@ static void handle_pointer_motion(struct sway_seat *seat, uint32_t time_msec,
|
|||
}
|
||||
|
||||
static void handle_tablet_tool_motion(struct sway_seat *seat,
|
||||
struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy) {
|
||||
struct sway_tablet_tool *tool, uint32_t time_msec) {
|
||||
struct seatop_default_event *e = seat->seatop_data;
|
||||
struct sway_cursor *cursor = seat->cursor;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue