aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seatop_down.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2019-03-06 18:54:41 +1000
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-03-11 10:57:16 -0400
commit9bfb38521a6016042dffbe7e3242265b8134bda5 (patch)
tree4432120c30514af3e664f115c338b9a5cd5edb53 /sway/input/seatop_down.c
parentstringop.c: refactor a few functions (diff)
downloadsway-9bfb38521a6016042dffbe7e3242265b8134bda5.tar.gz
sway-9bfb38521a6016042dffbe7e3242265b8134bda5.tar.zst
sway-9bfb38521a6016042dffbe7e3242265b8134bda5.zip
Don't send button events to surfaces when dragging or resizing
It turns out sending button events during all seat operations is not desirable. This patch introduces a new property `seatop_impl.allows_events` which allows each operation to define whether button events should be passed to the surface or not. The `down` seat operation is the only one that supports this. As all the other seatops don't support it, the calls to seat_pointer_notify_button prior to starting them have been removed.
Diffstat (limited to 'sway/input/seatop_down.c')
-rw-r--r--sway/input/seatop_down.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/input/seatop_down.c b/sway/input/seatop_down.c
index 7f394095..895571b1 100644
--- a/sway/input/seatop_down.c
+++ b/sway/input/seatop_down.c
@@ -58,6 +58,7 @@ static const struct sway_seatop_impl seatop_impl = {
58 .finish = handle_finish, 58 .finish = handle_finish,
59 .abort = handle_abort, 59 .abort = handle_abort,
60 .unref = handle_unref, 60 .unref = handle_unref,
61 .allows_events = true,
61}; 62};
62 63
63void seatop_begin_down(struct sway_seat *seat, struct sway_container *con, 64void seatop_begin_down(struct sway_seat *seat, struct sway_container *con,