1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 12:47:18 +08:00

Fix ReplayDownloadButton handling key repeat

This commit is contained in:
Dean Herbert 2023-07-26 15:12:02 +09:00
parent 2dace742a3
commit e26afc2b89

View File

@ -107,6 +107,9 @@ namespace osu.Game.Screens.Ranking
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
{
if (e.Repeat)
return false;
switch (e.Action)
{
case GlobalAction.SaveReplay: