mirror of https://github.com/ppy/osu
Update enum name in line with changes
This commit is contained in:
parent
59025e9d50
commit
283c69a68f
|
@ -34,7 +34,7 @@ public GlobalActionContainer(OsuGameBase game)
|
|||
new KeyBinding(new[] { InputKey.Control, InputKey.Alt, InputKey.R }, GlobalAction.ResetInputSettings),
|
||||
new KeyBinding(new[] { InputKey.Control, InputKey.T }, GlobalAction.ToggleToolbar),
|
||||
new KeyBinding(new[] { InputKey.Control, InputKey.O }, GlobalAction.ToggleSettings),
|
||||
new KeyBinding(new[] { InputKey.Control, InputKey.D }, GlobalAction.ToggleDirect),
|
||||
new KeyBinding(new[] { InputKey.Control, InputKey.D }, GlobalAction.ToggleBeatmapListing),
|
||||
new KeyBinding(new[] { InputKey.Control, InputKey.N }, GlobalAction.ToggleNotifications),
|
||||
|
||||
new KeyBinding(InputKey.Escape, GlobalAction.Back),
|
||||
|
@ -113,7 +113,7 @@ public enum GlobalAction
|
|||
ToggleSettings,
|
||||
|
||||
[Description("Toggle beatmap listing")]
|
||||
ToggleDirect,
|
||||
ToggleBeatmapListing,
|
||||
|
||||
[Description("Increase volume")]
|
||||
IncreaseVolume,
|
||||
|
|
|
@ -13,7 +13,7 @@ public class ToolbarBeatmapListingButton : ToolbarOverlayToggleButton
|
|||
|
||||
public ToolbarBeatmapListingButton()
|
||||
{
|
||||
Hotkey = GlobalAction.ToggleDirect;
|
||||
Hotkey = GlobalAction.ToggleBeatmapListing;
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader(true)]
|
||||
|
|
Loading…
Reference in New Issue