1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

forgot to remove something... sorry

This commit is contained in:
Ryan Zmuda 2020-11-29 21:52:58 -05:00 committed by GitHub
parent 3994cf082d
commit a780a8bbd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,24 +273,6 @@ namespace osu.Game.Screens.Play
Progress.BindDrawableRuleset(drawableRuleset);
}
protected override bool OnKeyDown(KeyDownEvent e)
{
if (e.Repeat) return false;
if (e.ShiftPressed)
{
switch (e.Key)
{
case Key.Tab:
return true;
}
}
return base.OnKeyDown(e);
}
protected virtual SkinnableAccuracyCounter CreateAccuracyCounter() => new SkinnableAccuracyCounter();
protected virtual SkinnableScoreCounter CreateScoreCounter() => new SkinnableScoreCounter();