From 3f5e69be7f385cec24097a2479025b5ba569c071 Mon Sep 17 00:00:00 2001 From: Jack Ye <1160210343@qq.com> Date: Sat, 19 Apr 2025 11:27:43 +0800 Subject: [PATCH] Fix possible property change issue Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../SettingPages/ViewModels/SettingsPaneAboutViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs index ee0865f9d..55d6b0a1c 100644 --- a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs +++ b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs @@ -286,6 +286,6 @@ public partial class SettingsPaneAboutViewModel : BaseModel private void ResetSettingWindowFont() { string defaultFont = Win32Helper.GetSystemDefaultFont(false); - _settings.SettingWindowFont = defaultFont; + SettingWindowFont = defaultFont; } }