diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2016-01-08 14:41:58 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2016-01-08 14:41:58 (GMT) |
commit | e3167addbb9615b25625d9aafc52ce4a29d7e56b (patch) | |
tree | d06483faa59f6920ff46bd9a8276adb77860ed69 /library | |
parent | 86d7e25ad6f14fdba497c0b0756bc675f99bc8ba (diff) | |
download | tk-e3167addbb9615b25625d9aafc52ce4a29d7e56b.zip tk-e3167addbb9615b25625d9aafc52ce4a29d7e56b.tar.gz tk-e3167addbb9615b25625d9aafc52ce4a29d7e56b.tar.bz2 |
(cherry-pick) Backout previous commit: it causes many event-related test-failures in Tk test suite
FossilOrigin-Name: be895434e39b550000ec154a2e99b9e4be5eeda2
Diffstat (limited to 'library')
-rw-r--r-- | library/scrlbar.tcl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/library/scrlbar.tcl b/library/scrlbar.tcl index 7cec556..4b25325 100644 --- a/library/scrlbar.tcl +++ b/library/scrlbar.tcl @@ -141,10 +141,6 @@ 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. |