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 9431464 commit b3c5869Copy full SHA for b3c5869
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 || x.RawLabel == $"!{SelectedNewShortcutItem.PreviousHotKey.RawLabel}");
+ modifiableCollection.RemoveAll(x => x.RawLabel == item.PreviousHotKey.RawLabel || x.RawLabel == $"!{item.PreviousHotKey.RawLabel}");
255
modifiedCollection = new(modifiableCollection);
256
257
// Remove previous
0 commit comments