On Sun, Dec 8, 2013 at 10:41 PM, M.Yamada <
yama...@gmail.com> wrote:
> Hi, Sadrul Chowdhury.
>
> Thank you for the reply.
> I really appreciate it.
>
> I built the chroium, and I ran chroium with the option of following the
> chromium.
> ./chrome --touch-events=enabled
>
> But, Multi-touch is not running in my environment yet.
>
> My environment:
> OS is ubuntu 12.04 LTS
> In I'm using a touch panel monitor.
>
> INPUT DEVICE of the touch panel is assigned to /dev/input/event5.
> It exists.
What if you make the touchscreen a floating slave device instead?
To do this: run the 'xinput list' command, it will print something like:
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Logitech USB Optical Mouse id=8 [slave pointer (2)]
⎜ ↳ <touch-screen name> id=10
[slave pointer (2)]
You would then run 'xinput float 10' (the id for the touchscreen
listed above). This should get the touch-events working in chrome.
However, I understand this breaks interacting with other apps using
the touchscreen. I have filed
http://crbug.com/327224 to keep track of
this. (you can run 'xinput reattach 10 2' to undo the change made from
'xinput float 10').
Sadrul