diff --git a/osu.Game/Screens/Select/FilterControl.cs b/osu.Game/Screens/Select/FilterControl.cs index 7152523b45..c3f0eb9b6d 100644 --- a/osu.Game/Screens/Select/FilterControl.cs +++ b/osu.Game/Screens/Select/FilterControl.cs @@ -27,14 +27,12 @@ namespace osu.Game.Screens.Select public FilterControl() { - AutoSizeAxes = Axes.Y; - Children = new Drawable[] { new Box { Colour = Color4.Black, - Alpha = 0.6f, + Alpha = 0.8f, RelativeSizeAxes = Axes.Both, }, new FlowContainer diff --git a/osu.Game/Screens/Select/PlaySongSelect.cs b/osu.Game/Screens/Select/PlaySongSelect.cs index 81fa0bead1..60c9b96552 100644 --- a/osu.Game/Screens/Select/PlaySongSelect.cs +++ b/osu.Game/Screens/Select/PlaySongSelect.cs @@ -26,7 +26,6 @@ using osu.Game.Graphics.Containers; using osu.Game.Graphics; using osu.Framework.Input; using OpenTK.Input; -using osu.Game.Graphics; using System.Collections.Generic; using osu.Framework.Threading; @@ -112,6 +111,7 @@ namespace osu.Game.Screens.Select filter = new FilterControl { RelativeSizeAxes = Axes.X, + Height = 100, FilterChanged = filterChanged, Exit = Exit, },