diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-10-08 12:40:31 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-10-08 12:40:31 (GMT) |
commit | ba31530899c4dd81a94eef9d7b3b8c000fa7e869 (patch) | |
tree | 42bf8913843cd086468bd0d90a68178df5fabe5c /library/iconlist.tcl | |
parent | 15c3f793c7601f371d8fd1c65c0fe763a0560bda (diff) | |
download | tk-ba31530899c4dd81a94eef9d7b3b8c000fa7e869.zip tk-ba31530899c4dd81a94eef9d7b3b8c000fa7e869.tar.gz tk-ba31530899c4dd81a94eef9d7b3b8c000fa7e869.tar.bz2 |
[Patch 2870648]: Corrected cursor used in file/directory dialogs.
Diffstat (limited to 'library/iconlist.tcl')
-rw-r--r-- | library/iconlist.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/iconlist.tcl b/library/iconlist.tcl index df2803e..84f5612 100644 --- a/library/iconlist.tcl +++ b/library/iconlist.tcl @@ -3,7 +3,7 @@ # Implements the icon-list megawidget used in the "Tk" standard file # selection dialog boxes. # -# RCS: @(#) $Id: iconlist.tcl,v 1.2 2009/02/16 00:57:26 dkf Exp $ +# RCS: @(#) $Id: iconlist.tcl,v 1.3 2009/10/08 12:40:31 dkf Exp $ # # Copyright (c) 1994-1998 Sun Microsystems, Inc. # Copyright (c) 2009 Donal K. Fellows @@ -443,7 +443,7 @@ package require Tk 8.6 # method Create {} { ttk::frame $w - set hull [ttk::entry $w.cHull -takefocus 0] + set hull [ttk::entry $w.cHull -takefocus 0 -cursor {}] set sbar [ttk::scrollbar $w.cHull.sbar -orient horizontal -takefocus 0] catch {$sbar configure -highlightthickness 0} set canvas [canvas $w.cHull.canvas -highlightthick 0 -takefocus 1 \ |