1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 12:33:01 +08:00

Don't bother with alt support for now

This commit is contained in:
Dean Herbert 2023-12-24 01:59:48 +09:00
parent 6f11885d4b
commit 92b490f2e7
No known key found for this signature in database

View File

@ -227,7 +227,10 @@ namespace osu.Game.Screens.Play.PlayerSettings
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
{
double amount = e.AltPressed ? 1 : 5;
// To match stable, this should adjust by 5 ms, or 1 ms when holding alt.
// But that is hard to make work with global actions due to the operating mode.
// Let's use the more precise as a default for now.
const double amount = 1;
switch (e.Action)
{