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;
return false;
}
rightMouseScrollBlocked = false;
}
rightMouseScrollBlocked = false;
return base.OnMouseDown(e);
}