1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 20:32:55 +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;
FadeContainer.Child = Background = b;
InternalChild = FadeContainer;
Background.BlurSigma = BlurTarget;
}));
AddInternal(FadeContainer);
});
}
}