disable mouse input to touchscreen controls

This commit is contained in:
Dylan Nantz
2022-12-14 10:34:21 -05:00
parent 60c8ef3fe5
commit ee945c9b58
3 changed files with 0 additions and 54 deletions

View File

@ -206,18 +206,6 @@ namespace osu.Game.Rulesets.Mania.UI
keyBindingContainer = maniaInputManager?.KeyBindingContainer;
}
protected override bool OnMouseDown(MouseDownEvent e)
{
keyBindingContainer?.TriggerPressed(column.Action.Value);
return base.OnMouseDown(e);
}
protected override void OnMouseUp(MouseUpEvent e)
{
keyBindingContainer?.TriggerReleased(column.Action.Value);
base.OnMouseUp(e);
}
protected override bool OnTouchDown(TouchDownEvent e)
{
keyBindingContainer?.TriggerPressed(column.Action.Value);