Skip to content

Commit

Permalink
Fix non-snaking fan slides
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Apr 14, 2024
1 parent fb0e327 commit c180ff5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,5 @@ private void load(TextureStore textures)
Texture = textures.Get("slide"),
});
}

protected override void FreeAfterUse()
{
base.FreeAfterUse();
ClearTransforms();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public void PerformExitAnimation(double duration)

if (((ISlideChevron)chevron).DisappearThreshold <= Progress)
{
chevron.FadeOut();
chevron.Alpha = 0;
continue;
}

Expand Down

0 comments on commit c180ff5

Please sign in to comment.