diff options
author | vincentdarley <vincentdarley> | 2004-06-04 10:51:17 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2004-06-04 10:51:17 (GMT) |
commit | 0599d09e8d0ef7c3d1d1afbd61e61e2a4c14b099 (patch) | |
tree | d72800bda1f80884a0368bed786b3e88820147df /library | |
parent | df2af8293fc2b2a31a501cf87e04b8b34729dc9f (diff) | |
download | tk-0599d09e8d0ef7c3d1d1afbd61e61e2a4c14b099.zip tk-0599d09e8d0ef7c3d1d1afbd61e61e2a4c14b099.tar.gz tk-0599d09e8d0ef7c3d1d1afbd61e61e2a4c14b099.tar.bz2 |
text widget fixes
Diffstat (limited to 'library')
-rw-r--r-- | library/text.tcl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/library/text.tcl b/library/text.tcl index d038002..7b181b1 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -3,7 +3,7 @@ # This file defines the default bindings for Tk text widgets and provides # procedures that help in implementing the bindings. # -# RCS: @(#) $Id: text.tcl,v 1.30 2004/03/17 18:15:45 das Exp $ +# RCS: @(#) $Id: text.tcl,v 1.31 2004/06/04 10:51:18 vincentdarley Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -457,7 +457,10 @@ bind Text <MouseWheel> { } if {[string equal [tk windowingsystem] "aqua"]} { bind Text <Option-MouseWheel> { - %W yview scroll [expr {- 10*%D}] pixels + %W yview scroll [expr {-150 * %D}] pixels +} +bind Text <MouseWheel> { + %W yview scroll [expr {-15 * %D}] pixels } } |