Fix font name that shouldn't be translated.

This commit is contained in:
Jeff Young 2022-01-03 21:15:14 +00:00
parent 72340fcee2
commit 383beeba8e
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ FONT* FONT::getDefaultFont()
FONT* FONT::GetFont( const wxString& aFontName, bool aBold, bool aItalic )
{
if( aFontName.empty() || aFontName == _( "KiCad" ) )
if( aFontName.empty() || aFontName == wxT( "KiCad" ) )
return getDefaultFont();
std::tuple<wxString, bool, bool> key = { aFontName, aBold, aItalic };