Make python plugins optional

This commit is contained in:
Roy van Kaathoven
2014-03-18 18:27:59 +01:00
parent 46e0656fe9
commit ef63f11bbb
4 changed files with 35 additions and 4 deletions

View File

@@ -11,6 +11,12 @@ namespace Wox.Infrastructure.UserSettings
public List<WebSearch> WebSearches { 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()
{