From 3f1b6765aadf665ede8253464da19a5878f16e56 Mon Sep 17 00:00:00 2001 From: Markku Vire Date: Thu, 1 Nov 2007 22:43:04 +0200 Subject: [PATCH] Config: HAL: Touchpads are pointers too Treat touchpads -- not just mice -- as pointer devices. --- config/hal.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/hal.c b/config/hal.c index d7835e653..6bb449d5a 100644 --- a/config/hal.c +++ b/config/hal.c @@ -177,7 +177,8 @@ device_added(LibHalContext *hal_ctx, const char *udi) if (strcmp(props[i], "input.keys") == 0 || strcmp(props[i], "input.keyboard") == 0) type |= TYPE_KEYS; - if (strcmp(props[i], "input.mouse") == 0) + if (strcmp(props[i], "input.mouse") == 0 || + strcmp(props[i], "input.touchpad") == 0) type |= TYPE_POINTER; } libhal_free_string_array(props);