Skip to content

Commit

Permalink
Merge pull request #577 from LumpBloom7/Fix-non-snaking-fan-chevrons
Browse files Browse the repository at this point in the history
Fix non-snaking fan slides
  • Loading branch information
LumpBloom7 authored Apr 23, 2024
2 parents 033f2ff + c180ff5 commit d0df8ae
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 d0df8ae

Please sign in to comment.