We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b50a47 commit 0857433Copy full SHA for 0857433
src/Files.App/Views/Settings/ActionsPage.xaml.cs
@@ -251,7 +251,7 @@ GeneralSettingsService.Actions is not null
251
{
252
// Remove existing setting
253
var modifiableCollection = HotKeyCollection.Parse(storedKeys!).ToList();
254
- modifiableCollection.RemoveAll(x => x.RawLabel == item.PreviousHotKey.RawLabel);
+ modifiableCollection.RemoveAll(x => x.RawLabel == item.PreviousHotKey.RawLabel || x.RawLabel == $"!{SelectedNewShortcutItem.PreviousHotKey.RawLabel}");
255
modifiedCollection = new(modifiableCollection);
256
257
// Remove previous
0 commit comments