diff --git a/src/core/Microsoft.PowerToys.Settings.UI.Lib/PowerLauncherSettings.cs b/src/core/Microsoft.PowerToys.Settings.UI.Lib/PowerLauncherSettings.cs index fc841e928b..8fe0e4cf1b 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 = "Launcher"; + public const string POWERTOYNAME = "Run"; public PowerLauncherProperties properties { get; set; } diff --git a/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.rc b/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.rc index ceb12a24d8..7e9f4c4be2 100644 Binary files a/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.rc and b/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.rc differ diff --git a/src/modules/launcher/PowerLauncher/SettingsWatcher.cs b/src/modules/launcher/PowerLauncher/SettingsWatcher.cs index 11f1c8a5c5..a583fffe10 100644 --- a/src/modules/launcher/PowerLauncher/SettingsWatcher.cs +++ b/src/modules/launcher/PowerLauncher/SettingsWatcher.cs @@ -27,7 +27,7 @@ namespace PowerLauncher // Set up watcher try { - _watcher = Helper.GetFileWatcher("Launcher", "settings.json", OverloadSettings); + _watcher = Helper.GetFileWatcher(PowerLauncherSettings.POWERTOYNAME, "settings.json", OverloadSettings); } catch (Exception e) { @@ -47,7 +47,7 @@ namespace PowerLauncher retry = false; try { - var overloadSettings = SettingsUtils.GetSettings("Launcher"); + var overloadSettings = SettingsUtils.GetSettings(PowerLauncherSettings.POWERTOYNAME); var openPowerlauncher = ConvertHotkey(overloadSettings.properties.open_powerlauncher); if (_settings.Hotkey != openPowerlauncher)