1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 01:53:00 +08:00

Merge pull request #20565 from peppy/random-dont-handle-repeat

Change song select random key binding to not handle key repeat
This commit is contained in:
Dan Balasescu 2022-10-04 13:03:19 +09:00 committed by GitHub
commit f7f0aa1548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,8 @@ namespace osu.Game.Screens.Select
return false;
}
TriggerClick();
if (!e.Repeat)
TriggerClick();
return true;
}