Remove panel fade out for now

Should be implemented at one level above using a dedicated container.
This commit is contained in:
Dean Herbert 2018-01-12 17:22:51 +09:00
parent 8f7c048c4e
commit 0a06f8069f

View File

@ -137,16 +137,6 @@ namespace osu.Game.Overlays
});
}
private void clearPanels()
{
if (panels != null)
{
panels.FadeOut(200);
panels.Expire();
panels = null;
}
}
private APIRequest getUsersRequest;
private readonly Bindable<string> currentQuery = new Bindable<string>();
@ -191,6 +181,15 @@ namespace osu.Game.Overlays
recreatePanels(Filter.DisplayStyleControl.DisplayStyle.Value);
}
private void clearPanels()
{
if (panels != null)
{
panels.Expire();
panels = null;
}
}
public void APIStateChanged(APIAccess api, APIState state)
{
switch (state)