mirror of
https://github.com/X11Libre/xf86-input-synaptics.git
synced 2026-03-24 01:34:04 +00:00
ClickPad is most definitely a bool option.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
This commit is contained in:
@@ -702,7 +702,7 @@ static void set_default_parameters(InputInfoPtr pInfo)
|
||||
pars->tap_move = xf86SetIntOption(opts, "MaxTapMove", tapMove);
|
||||
pars->tap_time_2 = xf86SetIntOption(opts, "MaxDoubleTapTime", 180);
|
||||
pars->click_time = xf86SetIntOption(opts, "ClickTime", 100);
|
||||
pars->clickpad = xf86SetIntOption(opts, "ClickPad", pars->clickpad); /* Probed */
|
||||
pars->clickpad = xf86SetBoolOption(opts, "ClickPad", pars->clickpad); /* Probed */
|
||||
pars->fast_taps = xf86SetBoolOption(opts, "FastTaps", FALSE);
|
||||
/* middle mouse button emulation on a clickpad? nah, you're joking */
|
||||
middle_button_timeout = pars->clickpad ? 0 : 75;
|
||||
|
||||
Reference in New Issue
Block a user