From 5b6b7e728eb655b13da64e5b18416027702bcfb8 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 1 Mar 2026 13:59:15 +0800 Subject: [PATCH] Rename themeName to theme in UpdateFonts for consistency Renamed the variable themeName to theme in the UpdateFonts method to improve naming consistency. No functional changes were made. --- Flow.Launcher.Core/Resource/Theme.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Core/Resource/Theme.cs b/Flow.Launcher.Core/Resource/Theme.cs index 1b6b016bd..43814800b 100644 --- a/Flow.Launcher.Core/Resource/Theme.cs +++ b/Flow.Launcher.Core/Resource/Theme.cs @@ -130,8 +130,8 @@ namespace Flow.Launcher.Core.Resource try { // Load a ResourceDictionary for the specified theme. - var themeName = _settings.Theme; - var dict = GetThemeResourceDictionary(themeName); + var theme = _settings.Theme; + var dict = GetThemeResourceDictionary(theme); // Apply font settings to the theme resource. ApplyFontSettings(dict);