Fix second case of font name mismatch.

This commit is contained in:
Jeff Young 2022-01-08 20:11:37 +00:00
parent 263513b8cf
commit c5eb77d765
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ bool FONT::IsStroke( const wxString& aFontName )
return font && font->IsStroke();
#else
return aFontName == _( "Default Font" ) || aFontName == wxT( "KiCad" );
return aFontName == _( "Default Font" ) || aFontName == wxT( "KiCad Font" );
#endif
}