mirror of https://github.com/ppy/osu
Prevent idle state from being updated incorrectly
This commit is contained in:
parent
dc36b81cee
commit
465aa4e0f6
|
@ -176,7 +176,7 @@ private void onMulti()
|
|||
|
||||
private void updateIdleState(bool isIdle)
|
||||
{
|
||||
if (isIdle && State != ButtonSystemState.Exit)
|
||||
if (isIdle && State != ButtonSystemState.Exit && State != ButtonSystemState.EnteringMode)
|
||||
State = ButtonSystemState.Initial;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue