fix: use better character for detecting jp fonts
This commit is contained in:
+1
-1
@@ -75,7 +75,7 @@ internal static class Fonts {
|
|||||||
var probablyJp = false;
|
var probablyJp = false;
|
||||||
for (var j = 0; j < family.FontCount; j++) {
|
for (var j = 0; j < family.FontCount; j++) {
|
||||||
using var font = family.GetFont(j);
|
using var font = family.GetFont(j);
|
||||||
if (!font.HasCharacter('日') || font.IsSymbolFont) {
|
if (!font.HasCharacter('気') || font.IsSymbolFont) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user