mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add command for user to call in Plugin.Sys
This commit is contained in:
parent
96660ebd2a
commit
8ca6e8c478
1 changed files with 11 additions and 0 deletions
|
|
@ -207,6 +207,17 @@ namespace Wox.Plugin.Sys
|
|||
context.API.OpenSettingDialog();
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Reload Plugin Data",
|
||||
SubTitle = "Reloads plugin's data with new content added after Wox started. Plugins need to have this feature already added.",
|
||||
IcoPath = "Images\\app.png",
|
||||
Action = c =>
|
||||
{
|
||||
context.API.ReloadPluginData();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
});
|
||||
return results;
|
||||
|
|
|
|||
Loading…
Reference in a new issue