private void UpdateShortcutsWithSameTarget(UpdateShortcutsWithSameTargetCommand command)
 {
     shortcuts.Where(s => s.Target == command.Shortcut.Target && s != command.Shortcut)
     .ToList()
     .ForEach(s => s.Reload());
 }
 private void UpdateShortcutsWithSameTarget(UpdateShortcutsWithSameTargetCommand command)
 {
     shortcuts.Where(s => s.Target == command.Shortcut.Target && s != command.Shortcut)
         .ToList()
         .ForEach(s => s.Reload());
 }