I've just installed 12.04.1 from scratch on my Mini 10v, and the touchpad is behaving a bit oddly.
It's got buttons integrated into the touchpad, and it looks as though a touch on a button is also being registered as a touch on the touchpad, causing all sorts of problems with clicking and dragging.
Is there a fix for this? I seem to remember on very old versions of ubuntu having to disable the lower part of the touchpad, but I don't think it's been an issue for some time.
To disable a strip at the bottom, you'd use
synclient AreaBottomEdge=xxx
, where xxx is a number which is less then the vertical width of the touchpad.For example, on my Dell mini 10 (1010) with an Elantech touchpad, I had to use the following:
...while the touchpad dimentions are:
You can use
AreaLeftEdge
,AreaRightEdge
andAreaTopEdge
options in a similar manner, if needed.To make the change permanent, I had to create
/etc/X11/xorg.conf
with the folloing content:PS: You can find out how your Mini 10v's touchpad is identified by looking at the Xorg log info -
cat /var/log/Xorg.0.log | grep touch
.