3

I'm still in the process of evaluating Unity vs Gnome on Ubuntu 18.04.1

In Unity I noticed that there is no setting for natural scrolling.

In the dconf-editor natural scrolling is set to on.

But it is not scrolling traditionally - how to fix this?

2 Answers2

2

Linked post explains how to set another property of touchpad, so for clarity I'll write it down here:

# First find number of your touchpad device
xinput list

# then get list of its properties and get number of "Natural Scrolling Enabled"
xinput list-props device_number

# finally set the property to 1 (true)
xinput set-prop device_number prop_number 1
adamczi
  • 121
0

Install Synaptics TouchPad driver for X.Org server:

sudo apt install xserver-xorg-input-synaptics-hwe-18.04

and re-login.

Andriy
  • 59