diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-30 10:42:31 -0500 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2019-01-30 19:53:59 +0100 |
commit | a6d41254c90c1471326e5df94b939a12844d9be6 (patch) | |
tree | 2b8c8f6efc012284bd438a0ebcfc7f6022e32bc5 /sway/config | |
parent | ee4b8a39385203a560818f99b380565d16bc7665 (diff) |
Add pointer_constraint command
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/seat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config/seat.c b/sway/config/seat.c index 92dc42e3..541c4f99 100644 --- a/sway/config/seat.c +++ b/sway/config/seat.c @@ -26,6 +26,7 @@ struct seat_config *new_seat_config(const char* name) { return NULL; } seat->hide_cursor_timeout = -1; + seat->allow_constrain = true; return seat; } |