mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Change carousel terminology to not use Children
/ InternalChildren
This commit is contained in:
@ -53,7 +53,7 @@ namespace osu.Game.Screens.Select.Carousel
|
||||
|
||||
if (item is CarouselGroup group)
|
||||
{
|
||||
foreach (var c in group.Children)
|
||||
foreach (var c in group.Items)
|
||||
c.Filtered.ValueChanged -= onStateChange;
|
||||
}
|
||||
}
|
||||
@ -117,7 +117,7 @@ namespace osu.Game.Screens.Select.Carousel
|
||||
|
||||
if (Item is CarouselGroup group)
|
||||
{
|
||||
foreach (var c in group.Children)
|
||||
foreach (var c in group.Items)
|
||||
c.Filtered.ValueChanged += onStateChange;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user