Merge pull request #51 from Rovak/python-optional

Make python plugins optional
This commit is contained in:
Yeechan Lu
2014-03-19 11:42:46 +08:00
4 changed files with 41 additions and 4 deletions

View File

@@ -12,6 +12,12 @@ namespace Wox.Infrastructure.UserSettings
public List<ProgramSource> ProgramSources { get; set; }
public List<CustomPluginHotkey> CustomPluginHotkeys { get; set; }
public bool StartWoxOnSystemStartup { get; set; }
public bool EnablePythonPlugins { get; set; }
public UserSetting()
{
EnablePythonPlugins = false;
}
public List<WebSearch> LoadDefaultWebSearches()
{