From b58d9a92e0f2a8fb49c953f34ef2419510f22cc1 Mon Sep 17 00:00:00 2001 From: hobbs Date: Tue, 18 Feb 2003 21:24:39 +0000 Subject: * library/tk.tcl (::tk::TabToWindow): auto-highlight spinboxes as well as entries when tabbing in. [Patch #683813] (bron) --- ChangeLog | 3 +++ library/tk.tcl | 7 ++++--- 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 + * 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 } -- cgit v0.12