mirror of https://github.com/ppy/osu
Merge pull request #20565 from peppy/random-dont-handle-repeat
Change song select random key binding to not handle key repeat
This commit is contained in:
commit
f7f0aa1548
|
@ -138,7 +138,8 @@ public override bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
|||
return false;
|
||||
}
|
||||
|
||||
TriggerClick();
|
||||
if (!e.Repeat)
|
||||
TriggerClick();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue