summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--library/tk.tcl7
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 42deb6e..5b59361 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2003-02-18 Jeff Hobbs <jeffh@ActiveState.com>
+ * library/tk.tcl (::tk::TabToWindow): auto-highlight spinboxes as
+ well as entries when tabbing in. [Patch #683813] (bron)
+
* library/xmfbox.tcl (::tk::MotifFDialog_ActivateSEnt): correct
sub on embedded newlines. [Patch #688572] (bonfield)
diff --git a/library/tk.tcl b/library/tk.tcl
index f9abc6c..1d0d3d0 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.45 2002/10/10 16:34:51 hobbs Exp $
+# RCS: @(#) $Id: tk.tcl,v 1.46 2003/02/18 21:24:39 hobbs Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -442,13 +442,14 @@ proc ::tk::CancelRepeat {} {
# ::tk::TabToWindow --
# This procedure moves the focus to the given widget. If the widget
-# is an entry, it selects the entire contents of the widget.
+# is an entry or a spinbox, it selects the entire contents of the widget.
#
# Arguments:
# w - Window to which focus should be set.
proc ::tk::TabToWindow {w} {
- if {[string equal [winfo class $w] Entry]} {
+ if {[string equal [winfo class $w] Entry] \
+ || [string equal [winfo class $w] Spinbox]} {
$w selection range 0 end
$w icursor end
}