Using eclipse keppler on ubuntu 13.10, gnome 3.8
I am launching eclipse with this script:
peter@OFFICE /opt/eclipse ls -l eclipse*
-rwxr-xr-x 1 root root 162 Dec 17 14:46 eclipse
-rwxr-xr-x 1 root root 73015 Sep 11 12:01 eclipse.bin
-rw-r--r-- 1 root root 444 Nov 26 08:42 eclipse.ini
peter@OFFICE /opt/eclipse cat eclipse
#!/bin/bash
export GDK_NATIVE_WINDOWS=1
export ECLIPSE_HOME="/opt/eclipse"
export UBUNTU_MENUPROXY=0
export LIBOVERLAY_SCROLLBAR=0
$ECLIPSE_HOME/eclipse.bin $*
and I have the following settings set:
cat /etc/gtk-3.0/settings.ini
[Settings]
...
gtk-primary-button-warps-slider = false
and this is set too:
gsettings set com.canonical.desktop.interface scrollbar-mode normal
In all my apps (tested with terminal, gedit and a few other apps), the scrollbar works as a pager (left click moves up/down one page). However in eclipse, it jumps to the click point. How can I get eclipse to respect this setting.