1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 05:01:20 +08:00

Merge pull request #30309 from peppy/no-delay-on-pause

Remove hold-to-confirm delay when pausing using keyboard shortcuts
This commit is contained in:
Bartłomiej Dach
2024-10-16 15:04:29 +02:00
committed by GitHub
Unverified
@@ -299,7 +299,7 @@ namespace osu.Game.Screens.Play.HUD
{
case GlobalAction.Back:
if (!pendingAnimation)
BeginConfirm();
Confirm();
return true;
case GlobalAction.PauseGameplay:
@@ -307,7 +307,7 @@ namespace osu.Game.Screens.Play.HUD
if (ReplayLoaded.Value) return false;
if (!pendingAnimation)
BeginConfirm();
Confirm();
return true;
}