|
@@ -29,17 +29,6 @@ internal partial class ShortcutProvider
|
|
|
return _parser.Parse(InstallationPath);
|
|
|
}
|
|
|
|
|
|
- public List<Shortcut> DefaultShortcuts { get; } = new()
|
|
|
- {
|
|
|
- new Shortcut(Key.S, ModifierKeys.Control | ModifierKeys.Alt, "PixiEditor.File.SaveAsNew"),
|
|
|
- new Shortcut(Key.K, ModifierKeys.Control, "PixiEditor.Window.OpenSettingsWindow"),
|
|
|
- // Tools
|
|
|
- new Shortcut(Key.U, ModifierKeys.Shift, "PixiEditor.Tools.Select.EllipseToolViewModel"),
|
|
|
- new Shortcut(Key.I, ModifierKeys.None, "PixiEditor.Tools.Select.ColorPickerToolViewModel"),
|
|
|
- new Shortcut(Key.U, ModifierKeys.None, "PixiEditor.Tools.Select.RectangleToolViewModel"),
|
|
|
- new Shortcut(Key.V, ModifierKeys.None, "PixiEditor.Tools.Select.SelectToolViewModel"),
|
|
|
- // Not actually in aseprite, but should be included
|
|
|
- new Shortcut(Key.OemComma, ModifierKeys.Control, "PixiEditor.Search.Toggle")
|
|
|
- };
|
|
|
+ public List<Shortcut> DefaultShortcuts => _parser.Defaults;
|
|
|
}
|
|
|
}
|