I'm using a Laptop with Ubuntu 19.04, and while in Nautilus and Chromium I can get precise scrolling, it doesn't appear to be the case in Firefox. Here's a (short 30 second) demonstration video to show you what I mean: https://youtu.be/GeLQLZAp2lg
In Firefox, I have Smooth Scrolling, but not Precise Scrolling. In Chromium (and the Nautilus File Manager, and practically everywhere else) I have Precise Scrolling, as the video demonstrates.
uname -a:Linux MACHINE_NAME 5.0.0-16-generic #17-Ubuntu SMP Wed May 15 10:52:21 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux- Desktop Environment: Unity 7.5.0+19.04.20190304-0ubuntu1
- Firefox version: `68.0b7 (64 bit)
- Chromium version:
74.0.3729.169 (Official Build) Built on Ubuntu , running on Ubuntu 19.04 (64-bit) - Touchpad model (from
xinput):DELL0767:00 06CB:7E92 Touchpad - Laptop model: Dell Inspiron 5567
MOZ_USE_XINPUT2=1line to/etc/environment, and rebooting the system. I tried doing theexportin bash, and starting Firefox from there, but it didn't work; but perhaps you may have better luck adding it to your environment… With all that said: this is sure a bug in upstream Firefox, and should be reported. – Hi-Angel Jun 05 '19 at 23:26MOZ_USE_XINPUT2=1stopped working for me after upgrading from Ubuntu 18.10 to 19.04 (when launching Firefox from XFCE's launcher). Turns outGDK_CORE_DEVICE_EVENTS=1is being set and is conflicting, thus the following fixes it for me:env -uGDK_CORE_DEVICE_EVENTS MOZ_USE_XINPUT2=1 firefox– pcworld Sep 03 '19 at 01:09