Should not be a container

This commit is contained in:
Dean Herbert 2024-01-29 01:49:34 +09:00
parent b48f99ba4b
commit 23f12e1ea3
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -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);

View File

@ -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
{

View File

@ -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.