diff options
author | mdejong <mdejong> | 2001-03-29 11:05:49 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-03-29 11:05:49 (GMT) |
commit | 6181e4e8acc4749738972dd987facd578e1d4ba0 (patch) | |
tree | 9d6abc2c93dfebf503b7eb3673381b74c064ed01 /library/entry.tcl | |
parent | 42bf452631a363ad20faefed4dc926035d2cdceb (diff) | |
download | tk-6181e4e8acc4749738972dd987facd578e1d4ba0.zip tk-6181e4e8acc4749738972dd987facd578e1d4ba0.tar.gz tk-6181e4e8acc4749738972dd987facd578e1d4ba0.tar.bz2 |
* library/entry.tcl (tkEntryMouseSelect):
* library/text.tcl (tkTextSelectTo): When
the mouse is dragged with the button down,
move the insertion cursor to the current
mouse position.
* tests/event.test: Add a series of tests
for event generation. Add tests for selection,
check the position of the insertion cursor.
Diffstat (limited to 'library/entry.tcl')
-rw-r--r-- | library/entry.tcl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/library/entry.tcl b/library/entry.tcl index b44eaad..a826481 100644 --- a/library/entry.tcl +++ b/library/entry.tcl @@ -3,7 +3,7 @@ # This file defines the default bindings for Tk entry widgets and provides # procedures that help in implementing those bindings. # -# RCS: @(#) $Id: entry.tcl,v 1.13 2000/05/29 01:43:14 hobbs Exp $ +# RCS: @(#) $Id: entry.tcl,v 1.14 2001/03/29 11:05:49 mdejong Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -390,6 +390,9 @@ proc tkEntryMouseSelect {w x} { $w selection range 0 end } } + if {$tkPriv(mouseMoved)} { + $w icursor $cur + } update idletasks } |