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
1 changed files with 3 additions and 0 deletions

View File

@ -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: