Fix display style dropdown scaling the filter control

This commit is contained in:
DrabWeb
2017-05-29 22:39:59 -03:00
parent 5e4558cc54
commit b6cb9d3229
2 changed files with 63 additions and 44 deletions

View File

@ -55,17 +55,6 @@ namespace osu.Game.Overlays.SearchableList
},
},
},
new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
Header = CreateHeader(),
Filter = CreateFilterControl(),
},
},
scrollContainer = new Container
{
RelativeSizeAxes = Axes.Both,
@ -88,6 +77,18 @@ namespace osu.Game.Overlays.SearchableList
},
},
},
new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
AlwaysReceiveInput = true,
Children = new Drawable[]
{
Header = CreateHeader(),
Filter = CreateFilterControl(),
},
},
};
Filter.Search.Exit = Hide;