1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 02:19:55 +08:00

Change case to match; change hotkey to be more globally usable (previous has conflict on macOS)

This commit is contained in:
Dean Herbert
2019-06-24 18:19:17 +09:00
Unverified
parent fad1ced1b5
commit 2ea5165803
@@ -50,7 +50,7 @@ namespace osu.Game.Input.Bindings
{
new KeyBinding(InputKey.Space, GlobalAction.SkipCutscene),
new KeyBinding(InputKey.Tilde, GlobalAction.QuickRetry),
new KeyBinding(new[] { InputKey.Alt, InputKey.Tilde }, GlobalAction.QuickExit),
new KeyBinding(new[] { InputKey.Control, InputKey.Tilde }, GlobalAction.QuickExit),
new KeyBinding(new[] { InputKey.Control, InputKey.Plus }, GlobalAction.IncreaseScrollSpeed),
new KeyBinding(new[] { InputKey.Control, InputKey.Minus }, GlobalAction.DecreaseScrollSpeed),
};
@@ -95,6 +95,9 @@ namespace osu.Game.Input.Bindings
[Description("Quick retry (hold)")]
QuickRetry,
[Description("Quick exit (Hold)")]
QuickExit,
[Description("Take screenshot")]
TakeScreenshot,
@@ -112,8 +115,5 @@ namespace osu.Game.Input.Bindings
[Description("Select")]
Select,
[Description("Quick Exit (Hold)")]
QuickExit,
}
}