diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2012-04-05 14:03:35 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2012-04-05 17:52:57 -0700 |
commit | 42474e98ec4245c9e80fc0e9a4b287f3999324f2 (patch) | |
tree | a8726dba37748a7cd368837b8cf3013d06c9a217 | |
parent | 4b3ac1b563c3de32ad13e794fefabd5124648393 (diff) |
XQuartz: Automatically start our virtual tablet devices
Fixes: https://bugs.launchpad.net/inkscape/+bug/972914
Regression introduced by: 7790dc86384cc451ac44663737fde84dd81ad4e1
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
(cherry picked from commit e9d3848d7bda7f7de4c0f497aee4482d0b30ad49)
-rw-r--r-- | hw/xquartz/darwin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xquartz/darwin.c b/hw/xquartz/darwin.c index ff6581c6e..2d5174ab1 100644 --- a/hw/xquartz/darwin.c +++ b/hw/xquartz/darwin.c @@ -539,15 +539,15 @@ InitInput(int argc, char **argv) gdkdev->info.source = GDK_SOURCE_PEN; */ - darwinTabletStylus = AddInputDevice(serverClient, DarwinTabletProc, FALSE); + darwinTabletStylus = AddInputDevice(serverClient, DarwinTabletProc, TRUE); assert(darwinTabletStylus); darwinTabletStylus->name = strdup("pen"); - darwinTabletCursor = AddInputDevice(serverClient, DarwinTabletProc, FALSE); + darwinTabletCursor = AddInputDevice(serverClient, DarwinTabletProc, TRUE); assert(darwinTabletCursor); darwinTabletCursor->name = strdup("cursor"); - darwinTabletEraser = AddInputDevice(serverClient, DarwinTabletProc, FALSE); + darwinTabletEraser = AddInputDevice(serverClient, DarwinTabletProc, TRUE); assert(darwinTabletEraser); darwinTabletEraser->name = strdup("eraser"); |