1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 06:12:56 +08:00

Make slider circle masks not handle mouse input at all

This commit is contained in:
smoogipoo 2018-03-30 14:14:04 +09:00
parent e1123c5a95
commit 4ad776bfde

View File

@ -4,7 +4,6 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
using osu.Game.Graphics;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Osu.Objects;
@ -58,6 +57,6 @@ namespace osu.Game.Rulesets.Osu.Edit.Layers.Selection.Overlays
}
// Todo: This is temporary, since the slider circle masks don't do anything special yet. In the future they will handle input.
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args) => false;
public override bool HandleMouseInput => false;
}
}