1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 16:03:01 +08:00

Fix right click blocking not resetting correctly

This commit is contained in:
Dean Herbert 2019-08-15 19:25:33 +09:00
parent fc05cab050
commit b57298406f

View File

@ -710,10 +710,9 @@ namespace osu.Game.Screens.Select
rightMouseScrollBlocked = true; rightMouseScrollBlocked = true;
return false; return false;
} }
rightMouseScrollBlocked = false;
} }
rightMouseScrollBlocked = false;
return base.OnMouseDown(e); return base.OnMouseDown(e);
} }