File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
Plugins/Flow.Launcher.Plugin.PluginsManager Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 1- using Flow . Launcher . Infrastructure . UserSettings ;
1+ using Flow . Launcher . Infrastructure . UserSettings ;
22using Flow . Launcher . Plugin . PluginsManager . Models ;
33using System ;
44using System . Collections . Generic ;
@@ -10,12 +10,9 @@ internal class ContextMenu : IContextMenu
1010 {
1111 private PluginInitContext Context { get ; set ; }
1212
13- private Settings Settings { get ; set ; }
14-
15- public ContextMenu ( PluginInitContext context , Settings settings )
13+ public ContextMenu ( PluginInitContext context )
1614 {
1715 Context = context ;
18- Settings = settings ;
1916 }
2017
2118 public List < Result > LoadContextMenus ( Result selectedResult )
Original file line number Diff line number Diff line change 11using Flow . Launcher . Infrastructure . Storage ;
2- using Flow . Launcher . Infrastructure . UserSettings ;
32using Flow . Launcher . Plugin . PluginsManager . ViewModels ;
43using Flow . Launcher . Plugin . PluginsManager . Views ;
54using System . Collections . Generic ;
@@ -35,7 +34,7 @@ public void Init(PluginInitContext context)
3534 Context = context ;
3635 viewModel = new SettingsViewModel ( context ) ;
3736 Settings = viewModel . Settings ;
38- contextMenu = new ContextMenu ( Context , Settings ) ;
37+ contextMenu = new ContextMenu ( Context ) ;
3938 pluginManager = new PluginsManager ( Context , Settings ) ;
4039 _lastUpdateTime = DateTime . Now ;
4140 }
You can’t perform that action at this time.
0 commit comments