diff options
author | Matthieu Herrb <matthieu@openbsd.org> | 2009-11-25 19:11:55 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@openbsd.org> | 2009-11-25 19:11:55 +0000 |
commit | c86cdeaa96e55a3fa3b8914e3575704850126d91 (patch) | |
tree | 0596078826443f13f9de02b64156e97e4dbebd4d | |
parent | 0cdac07611a692c44020e22f2c2a076e34330171 (diff) |
The raw mode is a lot more useful now. So enable it by default.
-rw-r--r-- | man/ws.man | 2 | ||||
-rw-r--r-- | src/ws.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -79,7 +79,7 @@ the kernel by the zts(4) driver and the ztsscale(8) utility. .TP 4 .BI "Option \*qRaw\*q \*q" boolean \*q This option selects the raw (uncalibrated) mode for tablet devices. -It defaults to False. +It defaults to True. When using raw mode, if no coordinate space is specified by the above options, the coordinate space will be read from the kernel calibration data. @@ -285,7 +285,7 @@ wsPreInit(InputDriverPtr drv, IDevPtr dev, int flags) " or \"UD\"\n"); } } - priv->raw = xf86SetBoolOption(pInfo->options, "Raw", 0); + priv->raw = xf86SetBoolOption(pInfo->options, "Raw", 1); if (wsOpen(pInfo) != Success) { goto fail; } |