mirror of
https://github.com/ppy/osu
synced 2024-12-15 03:16:17 +00:00
Remove unnecessary capture
This commit is contained in:
parent
d27047f94d
commit
c02ce16f47
@ -36,8 +36,8 @@ namespace osu.Game.Screens.Select.Carousel
|
||||
protected DrawableCarouselItem(CarouselItem item)
|
||||
{
|
||||
Item = item;
|
||||
Item.Filtered.ValueChanged += v => Schedule(ApplyState);
|
||||
Item.State.ValueChanged += v => Schedule(ApplyState);
|
||||
Item.Filtered.ValueChanged += _ => Schedule(ApplyState);
|
||||
Item.State.ValueChanged += _ => Schedule(ApplyState);
|
||||
|
||||
Height = MAX_HEIGHT;
|
||||
RelativeSizeAxes = Axes.X;
|
||||
|
Loading…
Reference in New Issue
Block a user