File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Plugins/Flow.Launcher.Plugin.Sys Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
using System . Linq ;
3
3
using CommunityToolkit . Mvvm . DependencyInjection ;
4
4
using Flow . Launcher . Core . Resource ;
5
- using Flow . Launcher . Infrastructure . UserSettings ;
5
+ using FLSettings = Flow . Launcher . Infrastructure . UserSettings . Settings ;
6
6
7
7
namespace Flow . Launcher . Plugin . Sys
8
8
{
9
9
public class ThemeSelector
10
10
{
11
11
public const string Keyword = "fltheme" ;
12
12
13
- private readonly Settings _settings ;
13
+ private readonly FLSettings _settings ;
14
14
private readonly Theme _theme ;
15
15
private readonly PluginInitContext _context ;
16
16
@@ -43,7 +43,7 @@ public ThemeSelector(PluginInitContext context)
43
43
{
44
44
_context = context ;
45
45
_theme = Ioc . Default . GetRequiredService < Theme > ( ) ;
46
- _settings = Ioc . Default . GetRequiredService < Settings > ( ) ;
46
+ _settings = Ioc . Default . GetRequiredService < FLSettings > ( ) ;
47
47
}
48
48
49
49
public List < Result > Query ( Query query )
You can’t perform that action at this time.
0 commit comments