mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix #695
This commit is contained in:
parent
aba41d41ac
commit
1560a823c3
1 changed files with 3 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ using Keys = System.Windows.Forms.Keys;
|
|||
|
||||
namespace Wox.Plugin.CMD
|
||||
{
|
||||
public class CMD : IPlugin, ISettingProvider, IPluginI18n, IContextMenu
|
||||
public class CMD : IPlugin, ISettingProvider, IPluginI18n, IContextMenu, ISavable
|
||||
{
|
||||
private const string Image = "Images/shell.png";
|
||||
private PluginInitContext context;
|
||||
|
|
@ -30,11 +30,12 @@ namespace Wox.Plugin.CMD
|
|||
_settings = _storage.Load();
|
||||
}
|
||||
|
||||
~CMD()
|
||||
public void Save()
|
||||
{
|
||||
_storage.Save();
|
||||
}
|
||||
|
||||
|
||||
public List<Result> Query(Query query)
|
||||
{
|
||||
List<Result> results = new List<Result>();
|
||||
|
|
|
|||
Loading…
Reference in a new issue