Skip to content

Commit 01e8be7

Browse files
committed
Fix FL settings issue
1 parent bc0cde2 commit 01e8be7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Plugins/Flow.Launcher.Plugin.Sys/ThemeSelector.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
using System.Linq;
33
using CommunityToolkit.Mvvm.DependencyInjection;
44
using Flow.Launcher.Core.Resource;
5-
using Flow.Launcher.Infrastructure.UserSettings;
5+
using FLSettings = Flow.Launcher.Infrastructure.UserSettings.Settings;
66

77
namespace Flow.Launcher.Plugin.Sys
88
{
99
public class ThemeSelector
1010
{
1111
public const string Keyword = "fltheme";
1212

13-
private readonly Settings _settings;
13+
private readonly FLSettings _settings;
1414
private readonly Theme _theme;
1515
private readonly PluginInitContext _context;
1616

@@ -43,7 +43,7 @@ public ThemeSelector(PluginInitContext context)
4343
{
4444
_context = context;
4545
_theme = Ioc.Default.GetRequiredService<Theme>();
46-
_settings = Ioc.Default.GetRequiredService<Settings>();
46+
_settings = Ioc.Default.GetRequiredService<FLSettings>();
4747
}
4848

4949
public List<Result> Query(Query query)

0 commit comments

Comments
 (0)