summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-01-09 22:30:01 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-01-09 22:30:01 (GMT)
commitd4c47f56197bb6a4cafb59381cfed9aa19e0faa9 (patch)
treeffbc1ac410beb03eb9a7066e0be4aadd748bbf53 /library
parent6f63d08253e0d6af614b682dafcc8451a70be131 (diff)
downloadtk-d4c47f56197bb6a4cafb59381cfed9aa19e0faa9.zip
tk-d4c47f56197bb6a4cafb59381cfed9aa19e0faa9.tar.gz
tk-d4c47f56197bb6a4cafb59381cfed9aa19e0faa9.tar.bz2
(cherry-pick) Fix [1927212]: MouseWheel unbound for non-aqua scrollbars. Thanks to Francois Vogel for the actual work
Diffstat (limited to 'library')
-rw-r--r--library/scrlbar.tcl7
1 files changed, 7 insertions, 0 deletions
diff --git a/library/scrlbar.tcl b/library/scrlbar.tcl
index 4b25325..43ce4ae 100644
--- a/library/scrlbar.tcl
+++ b/library/scrlbar.tcl
@@ -141,6 +141,13 @@ if {[tk windowingsystem] eq "aqua"} {
bind Scrollbar <Shift-Option-MouseWheel> {
tk::ScrollByUnits %W h [expr {-10 * (%D)}]
}
+} else {
+ bind Scrollbar <MouseWheel> {
+ tk::ScrollByUnits %W v [expr {- (%D /120 ) * 4}]
+ }
+ bind Scrollbar <Shift-MouseWheel> {
+ tk::ScrollByUnits %W h [expr {- (%D /120 ) * 4}]
+ }
}
# tk::ScrollButtonDown --
# This procedure is invoked when a button is pressed in a scrollbar.