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.
This commit is contained in:
Jack251970 2026-03-01 13:59:15 +08:00
parent 340f2cbc04
commit 5b6b7e728e

View file

@ -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);