diff options
author | Ryan Dwyer <[email protected]> | 2019-03-16 09:18:54 +1000 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2019-03-17 10:02:04 -0600 |
commit | fb3475e291ea6be94131c19fdc006e9ad873ea5f (patch) | |
tree | edf7a13eb1ee74f8efd14a8d7b5355f820a8b10a /sway/input/cursor.c | |
parent | 73605dac2ae18e2ca84a74da895c4098a1bee6f8 (diff) |
Replace seatup allows_events with button callback
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r-- | sway/input/cursor.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index d531a20e..011b4929 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -610,9 +610,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor, } else { state_erase_button(cursor, button); } - if (seatop_allows_events(seat)) { - seat_pointer_notify_button(seat, time_msec, button, state); - } + seatop_button(seat, time_msec, device, button, state); if (button == seat->seatop_button && state == WLR_BUTTON_RELEASED) { seatop_finish(seat, time_msec); } |