mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-24 11:29:10 +00:00
Synaptics: don't report the middle button when clickPad is used.
On trackpads that had support for both, we were sending two button events when the trackpad was pressed. Tested by: Jakob Alvermark <jakob at alvermark.net> MFC after: 1 week
This commit is contained in:
parent
9963b4504c
commit
1321d68db0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=281704
@ -2756,7 +2756,8 @@ proc_synaptics(struct psm_softc *sc, packetbuf_t *pb, mousestatus_t *ms,
|
||||
touchpad_buttons |= MOUSE_BUTTON4DOWN;
|
||||
if ((pb->ipacket[3] ^ pb->ipacket[0]) & 0x02)
|
||||
touchpad_buttons |= MOUSE_BUTTON5DOWN;
|
||||
} else if (sc->synhw.capExtended && sc->synhw.capMiddle) {
|
||||
} else if (sc->synhw.capExtended && sc->synhw.capMiddle &&
|
||||
!sc->synhw.capClickPad) {
|
||||
/* Middle Button */
|
||||
if ((pb->ipacket[0] ^ pb->ipacket[3]) & 0x01)
|
||||
touchpad_buttons |= MOUSE_BUTTON2DOWN;
|
||||
|
Loading…
Reference in New Issue
Block a user