mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
BeatmapContainer -> beatmapContainer
This commit is contained in:
@ -28,11 +28,11 @@ namespace osu.Game.Overlays.Profile.Sections
|
|||||||
|
|
||||||
foreach (var paginatedBeatmapContainer in Children.OfType<PaginatedBeatmapContainer>())
|
foreach (var paginatedBeatmapContainer in Children.OfType<PaginatedBeatmapContainer>())
|
||||||
{
|
{
|
||||||
paginatedBeatmapContainer.BeganPlayingPreview += (BeatmapContainer) =>
|
paginatedBeatmapContainer.BeganPlayingPreview += beatmapContainer =>
|
||||||
{
|
{
|
||||||
foreach (var bc in Children.OfType<PaginatedBeatmapContainer>())
|
foreach (var bc in Children.OfType<PaginatedBeatmapContainer>())
|
||||||
{
|
{
|
||||||
if (bc != BeatmapContainer)
|
if (bc != beatmapContainer)
|
||||||
bc.StopPlayingPreview();
|
bc.StopPlayingPreview();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user