summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-01-08 14:39:48 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-01-08 14:39:48 (GMT)
commitabf2f765a373e996b93c141d8c4b38f067358129 (patch)
tree4cf29d89db8421c07c639141d2472fdbf33a0ac9 /library
parent134ea86c67d75762ac87a85b8fef7bc022dbb9e8 (diff)
downloadtk-abf2f765a373e996b93c141d8c4b38f067358129.zip
tk-abf2f765a373e996b93c141d8c4b38f067358129.tar.gz
tk-abf2f765a373e996b93c141d8c4b38f067358129.tar.bz2
Backout previous commit: it causes many event-related test-failures in Tk test suite
Diffstat (limited to 'library')
-rw-r--r--library/scrlbar.tcl4
1 files changed, 0 insertions, 4 deletions
diff --git a/library/scrlbar.tcl b/library/scrlbar.tcl
index 2a70b97..e17442f 100644
--- a/library/scrlbar.tcl
+++ b/library/scrlbar.tcl
@@ -157,10 +157,6 @@ switch [tk windowingsystem] {
bind Scrollbar <Shift-4> {tk::ScrollByUnits %W h -5}
bind Scrollbar <Shift-5> {tk::ScrollByUnits %W h 5}
}
-} 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.