1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-06 20:44:26 +08:00

Remove no longer required AlwaysPresent definition

This also reverts commit 7fedfd368c as
no-longer-necessary.
This commit is contained in:
Dean Herbert
2024-07-29 20:37:52 +09:00
Unverified
parent 5a1002c1a0
commit 05056f0e8a
2 changed files with 0 additions and 4 deletions
@@ -50,7 +50,6 @@ namespace osu.Game.Screens.OnlinePlay.DailyChallenge
{
drawable.RelativeSizeAxes = Axes.Both;
drawable.Size = Vector2.One;
drawable.AlwaysPresent = true;
drawable.Alpha = 0;
base.Add(drawable);
@@ -27,9 +27,6 @@ namespace osu.Game.Screens.OnlinePlay.DailyChallenge
private FillFlowContainer<Bar> barsContainer = null!;
// we're always present so that we can update while hidden, but we don't want tooltips to be displayed, therefore directly use alpha comparison here.
public override bool PropagatePositionalInputSubTree => base.PropagatePositionalInputSubTree && Alpha > 0;
private const int bin_count = MultiplayerPlaylistItemStats.TOTAL_SCORE_DISTRIBUTION_BINS;
private long[] bins = new long[bin_count];