diff options
author | hobbs <hobbs> | 1999-08-10 15:27:45 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-08-10 15:27:45 (GMT) |
commit | 58001043022773e21bfbfb6e0805a71f51951903 (patch) | |
tree | 2d5763166669aff5c475a9c3452c9567c4491f13 /library/tk.tcl | |
parent | b8cd6cd207680969577b6c57f6117462af60b265 (diff) | |
download | tk-58001043022773e21bfbfb6e0805a71f51951903.zip tk-58001043022773e21bfbfb6e0805a71f51951903.tar.gz tk-58001043022773e21bfbfb6e0805a71f51951903.tar.bz2 |
1999-08-10 Jeff Hobbs <hobbs@scriptics.com>
* library/clrpick.tcl:
* library/console.tcl:
* library/tk.tcl: fixed code where abbreviations where used
in calling widget methods (confuses iWidgets) [Bug: 2422]
Diffstat (limited to 'library/tk.tcl')
-rw-r--r-- | library/tk.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index a97f041..90e9f66 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -3,7 +3,7 @@ # Initialization script normally executed in the interpreter for each # Tk-based application. Arranges class bindings for widgets. # -# RCS: @(#) $Id: tk.tcl,v 1.8 1999/06/25 23:30:25 welch Exp $ +# RCS: @(#) $Id: tk.tcl,v 1.9 1999/08/10 15:27:49 hobbs Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -222,8 +222,8 @@ proc tkCancelRepeat {} { proc tkTabToWindow {w} { if {![string compare [winfo class $w] Entry]} { - $w select range 0 end - $w icur end + $w selection range 0 end + $w icursor end } focus $w } |