diff --git a/osu.Game/Screens/Select/FilterControl.cs b/osu.Game/Screens/Select/FilterControl.cs index c0a2b3703a..f98a4e328c 100644 --- a/osu.Game/Screens/Select/FilterControl.cs +++ b/osu.Game/Screens/Select/FilterControl.cs @@ -169,9 +169,12 @@ namespace osu.Game.Screens.Select sortTabs.AccentColour = spriteText.Colour = colours.GreenLight; } - protected override bool OnMouseDown(InputState state, MouseDownEventArgs args) - { - return true; - } + protected override bool OnMouseDown(InputState state, MouseDownEventArgs args) => true; + + protected override bool OnMouseMove(InputState state) => true; + + protected override bool OnClick(InputState state) => true; + + protected override bool OnDragStart(InputState state) => true; } } \ No newline at end of file