I had to modify my xorg.conf file to include the following:
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "SendCoreEvents"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
Option "LeftEdge" "120"
Option "RightEdge" "920"
Option "TopEdge" "120"
Option "BottomEdge" "680"
Option "FingerLow" "14"
Option "FingerHigh" "15"
Option "MaxTapMove" "110"
Option "VertScrollDelta" "20"
Option "HorizScrollDelta" "20"
Option "MinSpeed" "0.4"
Option "MaxSpeed" "0.99"
Option "AccelFactor" "0.035"
Option "MinTapTime" "110"
Option "MaxTapTime" "350"
Option "ClickTime" "0"
EndSection
Some of the "Section "ServerLayout"" you will probably already have.
Option "MinSpeed" "0.4"
Option "MaxSpeed" "0.99"
Option "AccelFactor" "0.035"
control pointer movement, and:
Option "FingerLow" "14"
Option "FingerHigh" "15"
control tapping. This final section controls double tapping and by extension "tap to drag"
Option "MinTapTime" "110"
Option "MaxTapTime" "350"
Option "ClickTime" "0"
One or two notes from experience of sharing these instructions.
Do make a backup of the 'xorg.conf' file before you start altering it and make sure that you can restore it from the command line if necessary. One spelling mistake in this and you graphical environment won't start.
You should already have a section in that file headed "Section "ServerLayout"". Just the one line in red needs adding to that.
The section "Section "InputDevice"" will need to be created in its entirety. There will already be an "InputDevice" section to do with the keyboard. This part is completely in addition to that.
On a Synaptics touchpad machine you would just need to add the part highlighted red and green.
The numbers for Right and Bottom edges may be wrong for your pad. They are based on one of what we may call standard size pads, not a widescreen pad. Zero starts in the top left corner for all dimensions and you may need to adjust those to suit your circumstances.
The parts in blue are just explanations of what some of the configuration options do.