diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-01-08 15:35:09 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-01-08 15:35:09 (GMT) |
commit | 1120c995717aa00bf4fe9bd5159ab8de6ca6e628 (patch) | |
tree | 189a03017ec5e245ff47dbed4fb4aa3c21653f1c /library | |
parent | 43554959e209cc2aaf81dbbb6909cf9d77cf57f4 (diff) | |
parent | 8e521a94152cd4546be53ea626f09f96f1f102d4 (diff) | |
download | tk-1120c995717aa00bf4fe9bd5159ab8de6ca6e628.zip tk-1120c995717aa00bf4fe9bd5159ab8de6ca6e628.tar.gz tk-1120c995717aa00bf4fe9bd5159ab8de6ca6e628.tar.bz2 |
New attempt at fixing bug [1927212fff]. (rebased against Tk 8.6)
Diffstat (limited to 'library')
-rw-r--r-- | library/scrlbar.tcl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/scrlbar.tcl b/library/scrlbar.tcl index e17442f..7b1c3af 100644 --- a/library/scrlbar.tcl +++ b/library/scrlbar.tcl @@ -152,6 +152,9 @@ switch [tk windowingsystem] { } } "x11" { + bind Scrollbar <MouseWheel> { + tk::ScrollByUnits %W v [expr {- (%D/120)}] + } bind Scrollbar <4> {tk::ScrollByUnits %W v -5} bind Scrollbar <5> {tk::ScrollByUnits %W v 5} bind Scrollbar <Shift-4> {tk::ScrollByUnits %W h -5} |