1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 23:27:25 +08:00

Remove shortcut

This commit is contained in:
Andrei Zavatski 2020-07-16 23:11:55 +03:00
parent 2d9909cdd8
commit f67b93936f
2 changed files with 0 additions and 8 deletions

View File

@ -36,7 +36,6 @@ namespace osu.Game.Input.Bindings
new KeyBinding(new[] { InputKey.Control, InputKey.O }, GlobalAction.ToggleSettings),
new KeyBinding(new[] { InputKey.Control, InputKey.D }, GlobalAction.ToggleDirect),
new KeyBinding(new[] { InputKey.Control, InputKey.N }, GlobalAction.ToggleNotifications),
new KeyBinding(new[] { InputKey.Control, InputKey.A }, GlobalAction.ToggleNews),
new KeyBinding(InputKey.Escape, GlobalAction.Back),
new KeyBinding(InputKey.ExtraMouseButton1, GlobalAction.Back),
@ -166,8 +165,5 @@ namespace osu.Game.Input.Bindings
[Description("Pause")]
PauseGameplay,
[Description("Toggle news overlay")]
ToggleNews
}
}

View File

@ -872,10 +872,6 @@ namespace osu.Game
dashboard.ToggleVisibility();
return true;
case GlobalAction.ToggleNews:
news.ToggleVisibility();
return true;
case GlobalAction.ResetInputSettings:
var sensitivity = frameworkConfig.GetBindable<double>(FrameworkSetting.CursorSensitivity);