make Context static so can be called anywhere

This commit is contained in:
Jeremy Wu 2020-05-24 19:19:54 +10:00
parent c5c15d2ab3
commit d839ecab26

View file

@ -8,9 +8,9 @@ using System.Windows.Controls;
namespace Flow.Launcher.Plugin.Explorer
{
class Main : ISettingProvider, IPlugin, ISavable, IContextMenu //, IPluginI18n <=== do later
public class Main : ISettingProvider, IPlugin, ISavable, IContextMenu //, IPluginI18n <=== do later
{
private PluginInitContext Context { get; set; }
internal static PluginInitContext Context { get; set; }
private Settings _settings;