summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2016-01-06 15:59:47 (GMT)
committerfvogel <fvogelnew1@free.fr>2016-01-06 15:59:47 (GMT)
commit1e82a05ae24e7f98a37ec14440649f3e3f852126 (patch)
treeb6842d8e923420f253b5027cce0748ea2f17724d /library
parent9259fa5d91aa5081cd7bfb8f1458d4310c4ace98 (diff)
downloadtk-1e82a05ae24e7f98a37ec14440649f3e3f852126.zip
tk-1e82a05ae24e7f98a37ec14440649f3e3f852126.tar.gz
tk-1e82a05ae24e7f98a37ec14440649f3e3f852126.tar.bz2
Fixed bug [1927212] - MouseWheel unbound for non-aqua scrollbars
Diffstat (limited to 'library')
-rw-r--r--library/scrlbar.tcl4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/scrlbar.tcl b/library/scrlbar.tcl
index 4b25325..7cec556 100644
--- a/library/scrlbar.tcl
+++ b/library/scrlbar.tcl
@@ -141,6 +141,10 @@ 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)}]
+ }
}
# tk::ScrollButtonDown --
# This procedure is invoked when a button is pressed in a scrollbar.