diff options
author | hobbs <hobbs> | 2004-09-06 23:22:14 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-09-06 23:22:14 (GMT) |
commit | 642a1d75747532bbc46426e0ed584ffe3913e247 (patch) | |
tree | d876a11b3eb9a60fa39418768c5056b3a9c50c07 /library/tkfbox.tcl | |
parent | 932edb88168c91456960b244d877f7456ef1f9ed (diff) | |
download | tk-642a1d75747532bbc46426e0ed584ffe3913e247.zip tk-642a1d75747532bbc46426e0ed584ffe3913e247.tar.gz tk-642a1d75747532bbc46426e0ed584ffe3913e247.tar.bz2 |
* library/tkfbox.tcl (::tk::dialog::file::Create): use label
instead of button for "File of type", as it properly handles
-state disabled now.
Diffstat (limited to 'library/tkfbox.tcl')
-rw-r--r-- | library/tkfbox.tcl | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/library/tkfbox.tcl b/library/tkfbox.tcl index ae03387..aa833ff 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.46 2004/08/11 22:22:02 dkf Exp $ +# RCS: @(#) $Id: tkfbox.tcl,v 1.47 2004/09/06 23:22:14 hobbs Exp $ # # Copyright (c) 1994-1998 Sun Microsystems, Inc. # @@ -1055,20 +1055,8 @@ static char updir_bits[] = { # Make the file types bits only if this is a File Dialog if { [string equal $class TkFDialog] } { - # The "File of types:" label needs to be grayed-out when - # -filetypes are not specified. The label widget does not support - # grayed-out text on monochrome displays. Therefore, we have to - # use a button widget to emulate a label widget (by setting its - # bindtags) - - set data(typeMenuLab) [::tk::AmpWidget button $f2.lab2 \ - -text $fTypeCaption -anchor e -bd [$f2.lab cget -bd] \ - -highlightthickness [$f2.lab cget -highlightthickness] \ - -relief [$f2.lab cget -relief] \ - -padx [$f2.lab cget -padx] \ - -pady [$f2.lab cget -pady]] - bindtags $data(typeMenuLab) [list $data(typeMenuLab) Label \ - [winfo toplevel $data(typeMenuLab)] all] + set data(typeMenuLab) [::tk::AmpWidget label $f2.lab2 \ + -text $fTypeCaption -anchor e -pady [$f2.lab cget -pady]] set data(typeMenuBtn) [menubutton $f2.menu -indicatoron 1 \ -menu $f2.menu.m] set data(typeMenu) [menu $data(typeMenuBtn).m -tearoff 0] |