From 28239c4a513ded1dfcc5c9a4845c171ef35b70e1 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 23 Oct 2019 16:18:21 +1100 Subject: [PATCH] Fix to allow plugin to start up disabled as default --- Wox.Infrastructure/UserSettings/PluginSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox.Infrastructure/UserSettings/PluginSettings.cs b/Wox.Infrastructure/UserSettings/PluginSettings.cs index c80ee7e722..c47fe7c156 100644 --- a/Wox.Infrastructure/UserSettings/PluginSettings.cs +++ b/Wox.Infrastructure/UserSettings/PluginSettings.cs @@ -29,7 +29,7 @@ namespace Wox.Infrastructure.UserSettings ID = metadata.ID, Name = metadata.Name, ActionKeywords = metadata.ActionKeywords, - Disabled = false + Disabled = metadata.Disabled }; } }