Update test scenes which should not handle key repeat

This commit is contained in:
Dean Herbert
2021-11-18 12:36:52 +09:00
parent 7599efac30
commit d7b178ea37
4 changed files with 12 additions and 0 deletions

View File

@ -83,6 +83,9 @@ namespace osu.Game.Tests.Visual.Gameplay
public bool OnPressed(KeyBindingPressEvent<TestAction> e)
{
if (e.Repeat)
return false;
ReceivedAction = e.Action == TestAction.Down;
return true;
}