diff options
Diffstat (limited to 'library/console.tcl')
-rw-r--r-- | library/console.tcl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/library/console.tcl b/library/console.tcl index e17b898..6eae24b 100644 --- a/library/console.tcl +++ b/library/console.tcl @@ -4,7 +4,7 @@ # can be used by non-unix systems that do not have built-in support # for shells. # -# RCS: @(#) $Id: console.tcl,v 1.42 2009/04/10 16:31:44 das Exp $ +# RCS: @(#) $Id: console.tcl,v 1.43 2009/06/29 14:35:01 das Exp $ # # Copyright (c) 1995-1997 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Ajuba Solutions. @@ -117,6 +117,11 @@ proc ::tk::ConsoleInit {} { AmpMenuArgs .menubar.edit add command -label [mc "&Decrease Font Size"] \ -accel "$mod+-" -command {event generate .console <<Console_FontSizeDecr>>} + if {[tk windowingsystem] eq "aqua"} { + .menubar add cascade -label [mc Window] -menu [menu .menubar.window] + .menubar add cascade -label [mc Help] -menu [menu .menubar.help] + } + . configure -menu .menubar # See if we can find a better font than the TkFixedFont |