1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00

Fix right click regression

This commit is contained in:
Dean Herbert 2018-09-25 13:39:33 +09:00
parent 2abe96fb9c
commit 73f451f27a

View File

@ -155,7 +155,7 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
updateWinConditions();
}
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args) => editorInfo.EditingEnabled;
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args) => args.Button == MouseButton.Left && editorInfo.EditingEnabled;
protected override bool OnDragStart(InputState state) => editorInfo.EditingEnabled;