1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 07:09:53 +08:00

Should not be a container

This commit is contained in:
Dean Herbert
2024-01-29 01:49:34 +09:00
Unverified
parent b48f99ba4b
commit 23f12e1ea3
3 changed files with 5 additions and 5 deletions
@@ -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
{
+1 -1
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.