1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-23 16:27:20 +08:00

Revert "Revert "forgot to remove something... sorry""

This reverts commit 6478bed431ec467b5c3579a3d264b8719a6b1f81.
This commit is contained in:
Ryan Zmuda 2020-11-29 23:15:12 -05:00
parent 6478bed431
commit 9145557522

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();