diff --git a/src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs b/src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs index 13a36217e8..0e10e33adf 100644 --- a/src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs +++ b/src/core/Microsoft.PowerToys.Settings.UI.Lib/EnabledModules.cs @@ -112,7 +112,7 @@ namespace Microsoft.PowerToys.Settings.UI.Lib private bool powerLauncher = true; - [JsonPropertyName("Run")] + [JsonPropertyName("PowerToys Run")] public bool PowerLauncher { get => this.powerLauncher; diff --git a/src/core/Microsoft.PowerToys.Settings.UI.Lib/PowerLauncherSettings.cs b/src/core/Microsoft.PowerToys.Settings.UI.Lib/PowerLauncherSettings.cs index 8fe0e4cf1b..d168cd0acf 100644 --- a/src/core/Microsoft.PowerToys.Settings.UI.Lib/PowerLauncherSettings.cs +++ b/src/core/Microsoft.PowerToys.Settings.UI.Lib/PowerLauncherSettings.cs @@ -8,7 +8,7 @@ namespace Microsoft.PowerToys.Settings.UI.Lib { public class PowerLauncherSettings : BasePTModuleSettings { - public const string POWERTOYNAME = "Run"; + public const string POWERTOYNAME = "PowerToys Run"; public PowerLauncherProperties properties { get; set; } diff --git a/src/modules/launcher/Wox.Infrastructure/Wox.cs b/src/modules/launcher/Wox.Infrastructure/Wox.cs index c3977247c9..d926d3c08a 100644 --- a/src/modules/launcher/Wox.Infrastructure/Wox.cs +++ b/src/modules/launcher/Wox.Infrastructure/Wox.cs @@ -8,7 +8,7 @@ namespace Wox.Infrastructure public static class Constant { public const string ExeFileName = "PowerLauncher"; - public const string ModuleLocation = "Microsoft\\PowerToys\\Run"; + public const string ModuleLocation = "Microsoft\\PowerToys\\PowerToysRun"; public const string Plugins = "Plugins"; private static readonly Assembly Assembly = Assembly.GetExecutingAssembly();