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)
commit1495c801841af36629d7d985074d43ddc31f62fe (patch)
treeffbc1ac410beb03eb9a7066e0be4aadd748bbf53 /library
parente07b10f1a79f05875a092a57edd405f0e23f7345 (diff)
downloadtk-1495c801841af36629d7d985074d43ddc31f62fe.zip
tk-1495c801841af36629d7d985074d43ddc31f62fe.tar.gz
tk-1495c801841af36629d7d985074d43ddc31f62fe.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.