Rename BeatmapCard{Base => }

This commit is contained in:
Bartłomiej Dach
2021-12-21 08:26:19 +01:00
parent 88d4e95ad8
commit c7b9b176c6
12 changed files with 27 additions and 27 deletions

View File

@ -141,7 +141,7 @@ namespace osu.Game.Beatmaps.Drawables.Cards.Buttons
private void toggleLoading(bool loading)
{
Enabled.Value = !loading;
icon.FadeTo(loading ? 0 : 1, BeatmapCardBase.TRANSITION_DURATION, Easing.OutQuint);
icon.FadeTo(loading ? 0 : 1, BeatmapCard.TRANSITION_DURATION, Easing.OutQuint);
loadingSpinner.State.Value = loading ? Visibility.Visible : Visibility.Hidden;
}
}