From 64c17767ed88a946cb2f04e6037b200853fc7447 Mon Sep 17 00:00:00 2001 From: ryanbodrug-microsoft <56318517+ryanbodrug-microsoft@users.noreply.github.com> Date: Mon, 4 May 2020 15:08:02 -0700 Subject: [PATCH] Reading correct json property for "Run" program. This prevents the Run (Previously PowerLauncher) from being opened when settings has it disabled. --- src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs b/src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs index 2333ba38d..50e271df7 100644 --- a/src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs +++ b/src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs @@ -36,7 +36,7 @@ namespace Microsoft.PowerToys.Settings.UI.Lib [JsonPropertyName("Keyboard Manager")] public bool KeyboardManager { get; set; } - [JsonPropertyName("Launcher")] + [JsonPropertyName("Run")] public bool PowerLauncher { get; set; } public string ToJsonString()