mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-01 07:57:59 +02:00
XQuartz: Automatically start our virtual tablet devices
Fixes: https://bugs.launchpad.net/inkscape/+bug/972914 Regression introduced by:7790dc8638Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> (cherry picked from commite9d3848d7b)
This commit is contained in:
parent
4b3ac1b563
commit
42474e98ec
1 changed files with 3 additions and 3 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue