diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-10-08 12:42:17 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-10-08 12:42:17 (GMT) |
commit | 7f82d0be47c421789498a8a9aaf0ac165620790e (patch) | |
tree | 3649a3af486f75d308eb61aa549ad9be6a86e37b /library | |
parent | a3690d234a09435755b871eef32c8df8971b5476 (diff) | |
download | tk-7f82d0be47c421789498a8a9aaf0ac165620790e.zip tk-7f82d0be47c421789498a8a9aaf0ac165620790e.tar.gz tk-7f82d0be47c421789498a8a9aaf0ac165620790e.tar.bz2 |
[Patch 2870648]: Corrected cursor used in file/directory dialogs.
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 8fb64b3..c8009da 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.68.2.1 2008/08/25 17:22:40 tmh Exp $ +# RCS: @(#) $Id: tkfbox.tcl,v 1.68.2.2 2009/10/08 12:42:17 dkf Exp $ # # Copyright (c) 1994-1998 Sun Microsystems, Inc. # @@ -227,7 +227,7 @@ proc ::tk::IconList_Create {w} { upvar ::tk::$w data ttk::frame $w - ttk::entry $w.cHull -takefocus 0 + ttk::entry $w.cHull -takefocus 0 -cursor {} set data(sbar) [ttk::scrollbar $w.cHull.sbar -orient horizontal -takefocus 0] catch {$data(sbar) configure -highlightthickness 0} set data(canvas) [canvas $w.cHull.canvas -highlightthick 0 \ |