1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 03:47:04 +08:00

Prevent idle state from being updated incorrectly

This commit is contained in:
David Zhao
2019-05-31 14:06:13 +09:00
Unverified
parent dc36b81cee
commit 465aa4e0f6
+1 -1
View File
@@ -176,7 +176,7 @@ namespace osu.Game.Screens.Menu
private void updateIdleState(bool isIdle)
{
if (isIdle && State != ButtonSystemState.Exit)
if (isIdle && State != ButtonSystemState.Exit && State != ButtonSystemState.EnteringMode)
State = ButtonSystemState.Initial;
}