Change editor scale hotkey to Ctrl-E

Forgot that Ctrl-T was taken by the game-global toolbar already, so it
wasn't working.
This commit is contained in:
Bartłomiej Dach 2024-05-29 10:14:47 +02:00
parent 9bd4b0d613
commit 9477e3b67d
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ public static IEnumerable<GlobalAction> GetGlobalActionsFor(GlobalActionCategory
new KeyBinding(new[] { InputKey.Control, InputKey.Shift, InputKey.MouseWheelRight }, GlobalAction.EditorCyclePreviousBeatSnapDivisor),
new KeyBinding(new[] { InputKey.Control, InputKey.Shift, InputKey.MouseWheelLeft }, GlobalAction.EditorCycleNextBeatSnapDivisor),
new KeyBinding(new[] { InputKey.Control, InputKey.R }, GlobalAction.EditorToggleRotateControl),
new KeyBinding(new[] { InputKey.Control, InputKey.T }, GlobalAction.EditorToggleScaleControl),
new KeyBinding(new[] { InputKey.Control, InputKey.E }, GlobalAction.EditorToggleScaleControl),
};
private static IEnumerable<KeyBinding> inGameKeyBindings => new[]