Apply reviews

This commit is contained in:
Dean Herbert
2019-08-15 12:11:54 +09:00
parent 7e74953784
commit f355cff8bc
6 changed files with 88 additions and 89 deletions

View File

@ -82,7 +82,7 @@ namespace osu.Game.Screens.Select.Carousel
Origin = Anchor.CentreLeft,
Children = new Drawable[]
{
new DifficultyIcon(beatmap)
new DifficultyIcon(beatmap, shouldShowTooltip: false)
{
Scale = new Vector2(1.8f),
},

View File

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