mirror of
https://github.com/ppy/osu
synced 2025-02-02 03:11:58 +00:00
Fix score breakdown tooltips appearing in other feeds
This commit is contained in:
parent
565107205c
commit
7fedfd368c
@ -27,6 +27,9 @@ namespace osu.Game.Screens.OnlinePlay.DailyChallenge
|
|||||||
|
|
||||||
private FillFlowContainer<Bar> barsContainer = null!;
|
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 const int bin_count = MultiplayerPlaylistItemStats.TOTAL_SCORE_DISTRIBUTION_BINS;
|
||||||
private long[] bins = new long[bin_count];
|
private long[] bins = new long[bin_count];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user