From bcbf366541cf894a8abaaea4c684ff551c54981c Mon Sep 17 00:00:00 2001 From: culler Date: Sat, 25 Jul 2020 14:48:23 +0000 Subject: Fix namespace error in console.tcl - Thanks to Adam Kapos for the patch. --- library/console.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/console.tcl b/library/console.tcl index 355a43b..6527607 100644 --- a/library/console.tcl +++ b/library/console.tcl @@ -740,9 +740,9 @@ proc ::tk::console::FontchooserToggle {} { } proc ::tk::console::FontchooserVisibility {index} { if {[tk fontchooser configure -visible]} { - .menubar.edit entryconfigure $index -label [msgcat::mc "Hide Fonts"] + .menubar.edit entryconfigure $index -label [::tk::msgcat::mc "Hide Fonts"] } else { - .menubar.edit entryconfigure $index -label [msgcat::mc "Show Fonts"] + .menubar.edit entryconfigure $index -label [::tk::msgcat::mc "Show Fonts"] } } proc ::tk::console::FontchooserFocus {w isFocusIn} { -- cgit v0.12