1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 08:12:56 +08:00

Show tooltips for beatmap set panels

This commit is contained in:
Dean Herbert 2019-06-20 01:10:03 +09:00
parent 816bac9874
commit d0a452cdf9

View File

@ -190,7 +190,7 @@ namespace osu.Game.Screens.Select.Carousel
private readonly BindableBool filtered = new BindableBool();
public FilterableDifficultyIcon(CarouselBeatmap item)
: base(item.Beatmap)
: base(item.Beatmap, shouldShowTooltip: true)
{
filtered.BindTo(item.Filtered);
filtered.ValueChanged += isFiltered => Schedule(() => this.FadeTo(isFiltered.NewValue ? 0.1f : 1, 100));