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:
parent
6f11885d4b
commit
92b490f2e7
@ -227,7 +227,10 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
|||||||
|
|
||||||
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
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)
|
switch (e.Action)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user