Update UI cases where repeat should not be handled

This commit is contained in:
Dean Herbert
2021-11-18 12:35:47 +09:00
parent 5fb5e0035c
commit 3de8125eac
21 changed files with 63 additions and 0 deletions

View File

@ -58,6 +58,9 @@ namespace osu.Game.Graphics.UserInterfaceV2
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
{
if (e.Repeat)
return false;
if (State.Value == Visibility.Hidden)
return false;