diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | library/tkfbox.tcl | 4 |
2 files changed, 8 insertions, 3 deletions
@@ -1,6 +1,11 @@ +2009-10-08 Donal K. Fellows <dkf@users.sf.net> + + * library/tkfbox.tcl (::tk::IconList_Create): [Patch 2870648]: + Corrected cursor used in file/directory dialogs. + 2009-10-07 Pat Thoyts <patthoyts@users.sourceforge.net> - * library/ttk/vistaTheme.tcl: [Bug 2787164] fix size of dropdown + * library/ttk/vistaTheme.tcl: [Bug 2787164]: Fix size of dropdown arrow on combobox and menubutton for Windows 7. 2009-10-07 Donal K. Fellows <dkf@users.sf.net> 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 \ |