Fix class name

This commit is contained in:
Dean Herbert 2018-05-22 16:04:36 +09:00
parent 8fbda9d57e
commit 5f8eb6d823
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@
namespace osu.Game.Graphics.Containers
{
public abstract class HoldToCofirmContainer : Container
public abstract class HoldToConfirmContainer : Container
{
public Action Action;

View File

@ -13,7 +13,7 @@ namespace osu.Game.Overlays
/// An overlay which will display a black screen that dims over a period before confirming an exit action.
/// Action is BYO (derived class will need to call <see cref="BeginConfirm"/> and <see cref="AbortConfirm"/> from a user event).
/// </summary>
public abstract class HoldToConfirmOverlay : HoldToCofirmContainer
public abstract class HoldToConfirmOverlay : HoldToConfirmContainer
{
private Box overlay;

View File

@ -78,7 +78,7 @@ protected override void Update()
Alpha = stayVisible ? 1 : Interpolation.ValueAt(elapsed, Alpha, MathHelper.Clamp(1 - adjust, 0.04f, 1), 0, 200, Easing.OutQuint);
}
private class Button : HoldToCofirmContainer
private class Button : HoldToConfirmContainer
{
private SpriteIcon icon;
private CircularProgress circularProgress;