From 2ffd8d14be6e713e7f26b8b220da076171efe427 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 2 Mar 2015 10:42:38 +1000 Subject: [PATCH] Apply the configuration before initalizing the property Otherwise the property contains the device defaults, rather than the xorg.conf options. Signed-off-by: Peter Hutterer --- src/libinput.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libinput.c b/src/libinput.c index eecd48c..049c15b 100644 --- a/src/libinput.c +++ b/src/libinput.c @@ -632,6 +632,7 @@ xf86libinput_init(DeviceIntPtr dev) if (libinput_device_has_capability(device, LIBINPUT_DEVICE_CAP_TOUCH)) xf86libinput_init_touch(pInfo); + LibinputApplyConfig(dev); LibinputInitProperty(dev); XIRegisterPropertyHandler(dev, LibinputSetProperty, NULL, NULL);