mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Don't use in invalidation logic to avoid incorrect execution
This commit is contained in:
@ -75,7 +75,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
|
||||
{
|
||||
if (invalidation.HasFlag(Invalidation.DrawSize))
|
||||
if ((invalidation & Invalidation.DrawSize) > 0)
|
||||
pathCached.Invalidate();
|
||||
|
||||
return base.Invalidate(invalidation, source, shallPropagate);
|
||||
|
Reference in New Issue
Block a user