1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 19:24:22 +08:00

BeatmapContainer -> beatmapContainer

This commit is contained in:
TocoToucan
2018-04-11 16:32:58 +03:00
Unverified
parent 6cdfaffcf7
commit 6a8f568f66
@@ -28,11 +28,11 @@ namespace osu.Game.Overlays.Profile.Sections
foreach (var paginatedBeatmapContainer in Children.OfType<PaginatedBeatmapContainer>())
{
paginatedBeatmapContainer.BeganPlayingPreview += (BeatmapContainer) =>
paginatedBeatmapContainer.BeganPlayingPreview += beatmapContainer =>
{
foreach (var bc in Children.OfType<PaginatedBeatmapContainer>())
{
if (bc != BeatmapContainer)
if (bc != beatmapContainer)
bc.StopPlayingPreview();
}
};