Rename one more left-over `skinnable` naming

This commit is contained in:
Salman Ahmed 2023-02-17 22:09:52 +03:00
parent 1a63ca9ece
commit 449e5fa6f8
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ public SerialisedDrawableInfo(Drawable component)
Anchor = component.Anchor;
Origin = component.Origin;
if (component is ISerialisableDrawable skinnable)
UsesFixedAnchor = skinnable.UsesFixedAnchor;
if (component is ISerialisableDrawable serialisableDrawable)
UsesFixedAnchor = serialisableDrawable.UsesFixedAnchor;
foreach (var (_, property) in component.GetSettingsSourceProperties())
{