mirror of https://github.com/ppy/osu
Add missing base lookup call to `DefaultSkin`
This commit is contained in:
parent
f55407f871
commit
4bb933e4b1
|
@ -36,6 +36,9 @@ public DefaultSkin(SkinInfo skin, IStorageResourceProvider resources)
|
|||
|
||||
public override Drawable GetDrawableComponent(ISkinComponent component)
|
||||
{
|
||||
if (base.GetDrawableComponent(component) is Drawable c)
|
||||
return c;
|
||||
|
||||
switch (component)
|
||||
{
|
||||
case SkinnableTargetComponent target:
|
||||
|
|
Loading…
Reference in New Issue