Remove customisation support for `SongProgressDisplay`

This commit is contained in:
Dean Herbert 2021-05-11 16:56:23 +09:00
parent d5fe4f0f72
commit 0cf3efa16b
1 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@
using osu.Game.Configuration;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.UI;
using osu.Game.Skinning;
namespace osu.Game.Screens.Play
{
@ -181,12 +180,12 @@ private void updateInfoMargin()
info.TransformTo(nameof(info.Margin), new MarginPadding { Bottom = finalMargin }, transition_duration, Easing.In);
}
public class SongProgressDisplay : Container, ISkinnableComponent
public class SongProgressDisplay : Container
{
public SongProgressDisplay()
{
// TODO: move actual implementation into this.
// exists for skin customisation purposes.
// exists for skin customisation purposes (interface should be added to this container).
Masking = true;
RelativeSizeAxes = Axes.Both;