As suggested by the comment itself. I think most users expect this.
Signed-off-by: Hector Martin <marcan@marcan.st>
return tp_scroll_get_default_method(tp);
}
+static int
+tp_scroll_config_natural_get_default(struct libinput_device *device)
+{
+ struct evdev_device *dev = evdev_device(device);
+
+ return (evdev_device_has_model_quirk(dev, QUIRK_MODEL_APPLE_TOUCHPAD) ||
+ evdev_device_has_model_quirk(dev, QUIRK_MODEL_APPLE_TOUCHPAD_ONEBUTTON));
+}
+
static void
tp_init_scroll(struct tp_dispatch *tp, struct evdev_device *device)
{
tp_edge_scroll_init(tp, device);
evdev_init_natural_scroll(device);
+ /* Override natural scroll config for Apple touchpads */
+ device->scroll.config_natural.get_default_enabled = tp_scroll_config_natural_get_default;
+ device->scroll.natural_scrolling_enabled = tp_scroll_config_natural_get_default(&device->base);
tp->scroll.config_method.get_methods = tp_scroll_config_scroll_method_get_methods;
tp->scroll.config_method.set_method = tp_scroll_config_scroll_method_set_method;
static int
evdev_scroll_config_natural_get_default(struct libinput_device *device)
{
- /* could enable this on Apple touchpads. could do that, could
- * very well do that... */
+ /* Overridden in evdev-mt-touchpad.c for Apple touchpads. */
return 0;
}
expected = LIBINPUT_CONFIG_STATUS_SUCCESS;
litest_assert_int_eq(status, expected);
+
+ libinput_device_config_scroll_set_natural_scroll_enabled(device, 0);
}
static inline void
expected = LIBINPUT_CONFIG_STATUS_SUCCESS;
litest_assert_int_eq(status, expected);
+
+ libinput_device_config_scroll_set_natural_scroll_enabled(device, 0);
}
static inline bool
{
struct litest_device *dev = litest_current_device();
+ int enabled = libevdev_get_id_vendor(dev->evdev) == VENDOR_ID_APPLE;
+
ck_assert_int_ge(libinput_device_config_scroll_has_natural_scroll(dev->libinput_device), 1);
- ck_assert_int_eq(libinput_device_config_scroll_get_natural_scroll_enabled(dev->libinput_device), 0);
- ck_assert_int_eq(libinput_device_config_scroll_get_default_natural_scroll_enabled(dev->libinput_device), 0);
+ ck_assert_int_eq(libinput_device_config_scroll_get_natural_scroll_enabled(dev->libinput_device), enabled);
+ ck_assert_int_eq(libinput_device_config_scroll_get_default_natural_scroll_enabled(dev->libinput_device), enabled);
}
END_TEST