mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 19:27:31 +08: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!;
|
||||
|
||||
// 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];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user