From 82f23e5e6489b23e10aef16a1bc54b4bb387e407 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Thu, 24 Apr 2025 19:29:42 +0800 Subject: [PATCH] Update ContentControlThemeFontFamily when setting changes --- Flow.Launcher.Infrastructure/UserSettings/Settings.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs index ca015fd70..1cccc38d9 100644 --- a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs +++ b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs @@ -115,6 +115,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings _settingWindowFont = value; OnPropertyChanged(); Application.Current.Resources["SettingWindowFont"] = new FontFamily(value); + Application.Current.Resources["ContentControlThemeFontFamily"] = new FontFamily(value); } } }