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

Adjust debounce a bit

This commit is contained in:
Dean Herbert
2017-12-22 00:50:32 +09:00
Unverified
parent 40ceaf12f2
commit 5c9d484395
+1 -1
View File
@@ -275,7 +275,7 @@ namespace osu.Game.Screens.Select
if (beatmap == Beatmap.Value.BeatmapInfo)
performLoad();
else
selectionChangedDebounce = Scheduler.AddDelayed(performLoad, 100);
selectionChangedDebounce = Scheduler.AddDelayed(performLoad, 200);
}
}