Fix notn using updated path

This commit is contained in:
2026-02-17 09:35:56 +09:00
parent cf67eae49d
commit 6a6e3414f2
+1 -1
View File
@@ -405,7 +405,7 @@ class MainViewModel : BaseViewModel, IFontResolver
{ {
path = Path.Combine(_processDir, "../Resources/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf"); path = Path.Combine(_processDir, "../Resources/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf");
} }
return File.ReadAllBytes(Path.Combine(_processDir, "Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf")); return File.ReadAllBytes(path);
} }
return null; return null;
} }