summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@openbsd.org>2009-11-25 19:11:55 +0000
committerMatthieu Herrb <matthieu@openbsd.org>2009-11-25 19:11:55 +0000
commitc86cdeaa96e55a3fa3b8914e3575704850126d91 (patch)
tree0596078826443f13f9de02b64156e97e4dbebd4d
parent0cdac07611a692c44020e22f2c2a076e34330171 (diff)
The raw mode is a lot more useful now. So enable it by default.
-rw-r--r--man/ws.man2
-rw-r--r--src/ws.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/man/ws.man b/man/ws.man
index d8f8805..1219f6a 100644
--- a/man/ws.man
+++ b/man/ws.man
@@ -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.
diff --git a/src/ws.c b/src/ws.c
index c39db76..47793af 100644
--- a/src/ws.c
+++ b/src/ws.c
@@ -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;
}