From a6d41254c90c1471326e5df94b939a12844d9be6 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 30 Jan 2019 10:42:31 -0500 Subject: Add pointer_constraint command --- sway/input/cursor.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sway/input/cursor.c') diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 78e2f695..14c62970 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -1454,6 +1454,11 @@ void handle_pointer_constraint(struct wl_listener *listener, void *data) { void sway_cursor_constrain(struct sway_cursor *cursor, struct wlr_pointer_constraint_v1 *constraint) { + struct seat_config *config = seat_get_config(cursor->seat); + if (!config->allow_constrain) { + return; + } + if (cursor->active_constraint == constraint) { return; } -- cgit v1.2.3-54-g00ecf