Fix possible property change issue

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Jack Ye 2025-04-19 11:27:43 +08:00 committed by GitHub
parent a15b789eb0
commit 3f5e69be7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -286,6 +286,6 @@ public partial class SettingsPaneAboutViewModel : BaseModel
private void ResetSettingWindowFont()
{
string defaultFont = Win32Helper.GetSystemDefaultFont(false);
_settings.SettingWindowFont = defaultFont;
SettingWindowFont = defaultFont;
}
}