From cdbe45d4dcf5e37e9810c755407560516a18e9f9 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Wed, 23 Apr 2025 11:48:11 +0800 Subject: [PATCH] Cleanup codes --- .../SettingPages/ViewModels/SettingsPaneAboutViewModel.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs index 55d6b0a1c..acffe1e85 100644 --- a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs +++ b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs @@ -285,7 +285,6 @@ public partial class SettingsPaneAboutViewModel : BaseModel [RelayCommand] private void ResetSettingWindowFont() { - string defaultFont = Win32Helper.GetSystemDefaultFont(false); - SettingWindowFont = defaultFont; + SettingWindowFont = Win32Helper.GetSystemDefaultFont(false); } }