Merge branch 'master' into enable_userselected_programloading

This commit is contained in:
Jeremy Wu
2019-10-15 05:49:00 +11:00
87 changed files with 1200 additions and 262 deletions

View File

@@ -14,7 +14,7 @@ using Stopwatch = Wox.Infrastructure.Stopwatch;
namespace Wox.Plugin.Program
{
public class Main : ISettingProvider, IPlugin, IPluginI18n, IContextMenu, ISavable
public class Main : ISettingProvider, IPlugin, IPluginI18n, IContextMenu, ISavable, IReloadable
{
private static readonly object IndexLock = new object();
internal static Win32[] _win32s { get; set; }
@@ -162,5 +162,10 @@ namespace Wox.Plugin.Program
}
return hide;
}
public void ReloadData()
{
IndexPrograms();
}
}
}