1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 10:30:16 +08:00

Adjust song select debounce upwards slightly

I still think it can probably go higher. Just going to do this in small
increments until people complain / notice.
This commit is contained in:
Dean Herbert
2025-09-03 17:56:16 +09:00
Unverified
parent 3e8775051e
commit b97cb65444
+1 -1
View File
@@ -65,7 +65,7 @@ namespace osu.Game.Screens.SelectV2
{
// this is intentionally slightly higher than key repeat, but low enough to not impede user experience.
// this avoids rapid churn loading when iterating the carousel using keyboard.
public const int SELECTION_DEBOUNCE = 100;
public const int SELECTION_DEBOUNCE = 150;
private const float logo_scale = 0.4f;
private const double fade_duration = 300;