mirror of
https://github.com/ppy/osu
synced 2024-12-15 11:25:29 +00:00
Should not be a container
This commit is contained in:
parent
b48f99ba4b
commit
23f12e1ea3
@ -41,7 +41,7 @@ namespace osu.Game.Screens.Play.HUD
|
||||
CornerRadius = 5;
|
||||
Masking = true;
|
||||
|
||||
Children = new Drawable[]
|
||||
InternalChildren = new Drawable[]
|
||||
{
|
||||
background = new Box
|
||||
{
|
||||
@ -105,9 +105,9 @@ namespace osu.Game.Screens.Play.HUD
|
||||
audioBar.Length = (float)Interpolation.Lerp(audioBar.Length, NormalizedValue, Math.Clamp(Time.Elapsed / 40, 0, 1));
|
||||
|
||||
if (trackTime > CurrentTime)
|
||||
ChangeChildDepth(audioBar, -1);
|
||||
ChangeInternalChildDepth(audioBar, -1);
|
||||
else
|
||||
ChangeChildDepth(audioBar, 0);
|
||||
ChangeInternalChildDepth(audioBar, 0);
|
||||
|
||||
float timeDelta = (float)Math.Abs(CurrentTime - trackTime);
|
||||
|
||||
|
@ -27,7 +27,7 @@ namespace osu.Game.Screens.Play.HUD
|
||||
RelativeSizeAxes = Axes.X;
|
||||
Height = barHeight + handleBarHeight + handleSize.Y;
|
||||
|
||||
Children = new Drawable[]
|
||||
InternalChildren = new Drawable[]
|
||||
{
|
||||
new Box
|
||||
{
|
||||
|
@ -10,7 +10,7 @@ using osuTK;
|
||||
|
||||
namespace osu.Game.Screens.Play.HUD
|
||||
{
|
||||
public abstract partial class SongProgressBar : Container
|
||||
public abstract partial class SongProgressBar : CompositeDrawable
|
||||
{
|
||||
/// <summary>
|
||||
/// Action which is invoked when a seek is requested, with the proposed millisecond value for the seek operation.
|
||||
|
Loading…
Reference in New Issue
Block a user