This question has already been asked (How to fix GTK3 scrollbar behavior) but I don't know how to implement the answer: If I click in the scrollbar below or above the thumb it moves to the spot I just clicked. This happens in Firefox but not in Opera, the 2 browsers I use. Could someone explain how to fix the problem?
Asked
Active
Viewed 5,109 times
2 Answers
5
What you want is called "legacy scrolling" in gtk3: edit or create $HOME/.config/gtk-3.0/settings.ini
to have
[Settings]
as the first line and
gtk-primary-button-warps-slider=false
on a subsequent line by itself. This works in most gtk3 applications but is said not to work in some. Alternatively, right-click instead of left-clicking works in all applications. And, if you want legacy scrolling system-wide, sudo edit /etc/gtk-3.0/settings.ini
the same way.

DK Bose
- 42,548
- 23
- 127
- 221
2
You can find out where got changed; during GTK v3.6 merge.
Kristian Rietveld and Michael Natterer introduced the feature but both had since dropped out of GitHub. :-/
https://github.com/GNOME/gtk/commit/64324a5da080bee7ca42cfe53dadea9a882a9e64

John Greene
- 136
printf "[Settings]\ngtk-primary-button-warps-slider = false\n" >> ~/.config/gtk-3.0/settings.ini
– Tor Klingberg Jun 07 '16 at 08:32[Settings]
line will be duplicated. I don't know whether that's a good thing. – DK Bose Jan 02 '17 at 02:03