xfree86: fix XI86_SHARED_POINTER flag setting
This commit is contained in:
parent
95e1a88050
commit
a7ab793293
|
@ -11,6 +11,12 @@ Files:
|
||||||
Xi/chdevcur.h
|
Xi/chdevcur.h
|
||||||
Xi/Makefile.am
|
Xi/Makefile.am
|
||||||
|
|
||||||
|
____________________________________________________________
|
||||||
|
|
||||||
|
xfree86: fix XI86_SHARED_POINTER flag setting
|
||||||
|
|
||||||
|
File:
|
||||||
|
hw/xfree86/common/xf86Xinput.c
|
||||||
|
|
||||||
== 20.12.06 ==
|
== 20.12.06 ==
|
||||||
xfree86: Changing "IsMPDevice" to "SharedPointer" option. Devices will default
|
xfree86: Changing "IsMPDevice" to "SharedPointer" option. Devices will default
|
||||||
|
|
|
@ -134,7 +134,7 @@ xf86ProcessCommonOptions(LocalDevicePtr local,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xf86SetBoolOption(list, "SharedPointer", 0)) {
|
if (xf86SetBoolOption(list, "SharedPointer", 0)) {
|
||||||
local->flags &= ~XI86_SHARED_POINTER;
|
local->flags |= XI86_SHARED_POINTER;
|
||||||
xf86Msg(X_CONFIG, "%s: is shared device\n", local->name);
|
xf86Msg(X_CONFIG, "%s: is shared device\n", local->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue