diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2005-11-22 11:00:38 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2005-11-22 11:00:38 (GMT) |
commit | c8617509f116942ea17b2c9ebcf63794e226242c (patch) | |
tree | 5df9f1bb8a268974447d7fafbb329b5bf60fa211 /library | |
parent | 0e32a0805cd94f63eb03f06a6f8e034a5d3b615b (diff) | |
download | tk-c8617509f116942ea17b2c9ebcf63794e226242c.zip tk-c8617509f116942ea17b2c9ebcf63794e226242c.tar.gz tk-c8617509f116942ea17b2c9ebcf63794e226242c.tar.bz2 |
Fix [Bug 1335485]
Diffstat (limited to 'library')
-rw-r--r-- | library/tkfbox.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/tkfbox.tcl b/library/tkfbox.tcl index 0cfa409..5a9fb58 100644 --- a/library/tkfbox.tcl +++ b/library/tkfbox.tcl @@ -11,7 +11,7 @@ # files by clicking on the file icons or by entering a filename # in the "Filename:" entry. # -# RCS: @(#) $Id: tkfbox.tcl,v 1.38.2.8 2005/04/12 20:33:35 hobbs Exp $ +# RCS: @(#) $Id: tkfbox.tcl,v 1.38.2.9 2005/11/22 11:00:38 dkf Exp $ # # Copyright (c) 1994-1998 Sun Microsystems, Inc. # @@ -848,7 +848,7 @@ proc ::tk::dialog::file:: {type args} { # Add traces on the selectPath variable # - trace variable data(selectPath) w "::tk::dialog::file::SetPath $w" + trace variable data(selectPath) w [list ::tk::dialog::file::SetPath $w] $data(dirMenuBtn) configure \ -textvariable ::tk::dialog::file::${dataName}(selectPath) |