From 6a6e3414f2d960d06fea2ed4b9a6b902ca91903e Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Tue, 17 Feb 2026 09:35:56 +0900 Subject: [PATCH] Fix notn using updated path --- ViewModels/MainViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ViewModels/MainViewModel.cs b/ViewModels/MainViewModel.cs index b4e544e..b39ced5 100644 --- a/ViewModels/MainViewModel.cs +++ b/ViewModels/MainViewModel.cs @@ -405,7 +405,7 @@ class MainViewModel : BaseViewModel, IFontResolver { 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; }