diff options
author | hobbs <hobbs> | 2006-07-07 00:38:46 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2006-07-07 00:38:46 (GMT) |
commit | 4991daebd930c8ef877ae5f3508cfa6bd9161193 (patch) | |
tree | 6ed7e710516026929da25ab920aec6d7e377d995 /library/tkfbox.tcl | |
parent | f8b461ddca24775fd06b1d6de5f0f982036a3428 (diff) | |
download | tk-4991daebd930c8ef877ae5f3508cfa6bd9161193.zip tk-4991daebd930c8ef877ae5f3508cfa6bd9161193.tar.gz tk-4991daebd930c8ef877ae5f3508cfa6bd9161193.tar.bz2 |
catch scrollbar use of highlightthickness
Diffstat (limited to 'library/tkfbox.tcl')
-rw-r--r-- | library/tkfbox.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/tkfbox.tcl b/library/tkfbox.tcl index a5799fa..ec37d55 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.11 2006/03/17 10:50:11 patthoyts Exp $ +# RCS: @(#) $Id: tkfbox.tcl,v 1.38.2.12 2006/07/07 00:38:47 hobbs Exp $ # # Copyright (c) 1994-1998 Sun Microsystems, Inc. # @@ -217,8 +217,8 @@ proc ::tk::IconList_Create {w} { upvar ::tk::$w data frame $w - set data(sbar) [scrollbar $w.sbar -orient horizontal \ - -highlightthickness 0 -takefocus 0] + set data(sbar) [scrollbar $w.sbar -orient horizontal -takefocus 0] + catch {$data(sbar) configure -highlightthickness 0} set data(canvas) [canvas $w.canvas -bd 2 -relief sunken \ -width 400 -height 120 -takefocus 1] pack $data(sbar) -side bottom -fill x -padx 2 |