1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Merge pull request #25964 from rushiiMachine/fix-export-replay-spam

Fix save & export failed replay hotkeys handling repeated keypresses
This commit is contained in:
Bartłomiej Dach 2023-12-20 21:07:36 +01:00 committed by GitHub
commit b7cca788b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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