1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 17:47:29 +08:00

Add missing base lookup call to DefaultSkin

This commit is contained in:
Dean Herbert 2021-05-11 18:55:45 +09:00
parent f55407f871
commit 4bb933e4b1

View File

@ -36,6 +36,9 @@ namespace osu.Game.Skinning
public override Drawable GetDrawableComponent(ISkinComponent component)
{
if (base.GetDrawableComponent(component) is Drawable c)
return c;
switch (component)
{
case SkinnableTargetComponent target: