diff --git a/Flow.Launcher.Infrastructure/UserSettings/PluginHotkey.cs b/Flow.Launcher.Infrastructure/UserSettings/PluginHotkey.cs index 614703fa9..60d0a99b3 100644 --- a/Flow.Launcher.Infrastructure/UserSettings/PluginHotkey.cs +++ b/Flow.Launcher.Infrastructure/UserSettings/PluginHotkey.cs @@ -5,20 +5,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings { public class CustomPluginHotkey : BaseModel { - private string _hotkey = string.Empty; - public string Hotkey - { - get => _hotkey; - set - { - if (_hotkey != value) - { - _hotkey = value; - OnPropertyChanged(); - } - } - } - + public string Hotkey { get; set; } public string ActionKeyword { get; set; } public override bool Equals(object other)