1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 11:12:54 +08:00

Move arrow to the first line

This commit is contained in:
Andrei Zavatski 2019-08-26 14:32:27 +03:00
parent fd0f42eee4
commit 9321f20884

View File

@ -224,8 +224,8 @@ namespace osu.Game.Screens.Select.Carousel
: base(items.Select(i => i.Beatmap).ToList(), ruleset, Color4.White)
{
// for now, fade the whole group based on the ratio of hidden items.
items.ForEach(item => item.Filtered.BindValueChanged(_
=> this.FadeTo(1 - 0.9f * ((float)items.Count(i => i.Filtered.Value) / items.Count), 100), true));
items.ForEach(item => item.Filtered.BindValueChanged(_ =>
this.FadeTo(1 - 0.9f * ((float)items.Count(i => i.Filtered.Value) / items.Count), 100), true));
}
}
}