1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 08:52:58 +08:00

Fix fadecontainer being added to multiple containers

This commit is contained in:
David Zhao 2019-02-18 17:11:38 +09:00
parent af30aefe77
commit 1d80674fbd

View File

@ -54,9 +54,9 @@ namespace osu.Game.Screens.Backgrounds
} }
b.Depth = newDepth; b.Depth = newDepth;
FadeContainer.Child = Background = b; FadeContainer.Child = Background = b;
InternalChild = FadeContainer;
Background.BlurSigma = BlurTarget; Background.BlurSigma = BlurTarget;
})); }));
AddInternal(FadeContainer);
}); });
} }
} }