diff options
author | Henrik Rydberg <rydberg@euromail.se> | 2010-10-16 14:43:22 +0200 |
---|---|---|
committer | Henrik Rydberg <rydberg@euromail.se> | 2010-10-16 16:26:47 +0200 |
commit | 8e156a03b221f8857778b9e91d8ea07852b866e2 (patch) | |
tree | ed5548b91746cf925eb0d010b7ed817308cd7351 /src | |
parent | f8f6d88082766d060d30db57962f9a6d7d338c52 (diff) |
Do not grab by default
Grabbing the device has some historic virtues, but to simplify
experimentation with devices and multitouch data, turn the device
grabbing of by default.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src')
-rw-r--r-- | src/mtouch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtouch.c b/src/mtouch.c index ec5eac9..a6b96b8 100644 --- a/src/mtouch.c +++ b/src/mtouch.c @@ -21,7 +21,7 @@ #include "mtouch.h" -static const int use_grab = 1; +static const int use_grab = 0; int configure_mtouch(struct MTouch *mt, int fd) { |