Rename Animation to Layer

This commit is contained in:
Andrei Zavatski 2019-08-04 13:54:23 +03:00
parent a30d7912b1
commit fd44ca3233
2 changed files with 4 additions and 4 deletions

View File

@ -9,13 +9,13 @@
namespace osu.Game.Graphics.UserInterface
{
public class DimmedLoadingAnimation : VisibilityContainer
public class DimmedLoadingLayer : VisibilityContainer
{
private const float transition_duration = 250;
private readonly LoadingAnimation loading;
public DimmedLoadingAnimation()
public DimmedLoadingLayer()
{
RelativeSizeAxes = Axes.Both;
Children = new Drawable[]

View File

@ -35,7 +35,7 @@ public class BeatmapDetails : Container
private readonly MetadataSection description, source, tags;
private readonly Container failRetryContainer;
private readonly FailRetryGraph failRetryGraph;
private readonly DimmedLoadingAnimation loading;
private readonly DimmedLoadingLayer loading;
private IAPIProvider api;
@ -156,7 +156,7 @@ public BeatmapDetails()
},
},
},
loading = new DimmedLoadingAnimation(),
loading = new DimmedLoadingLayer(),
};
}