mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Remove from dictionary on Remove()
This commit is contained in:
@ -51,8 +51,13 @@ namespace osu.Game.Rulesets.UI.Scrolling
|
|||||||
public override bool Remove(DrawableHitObject hitObject)
|
public override bool Remove(DrawableHitObject hitObject)
|
||||||
{
|
{
|
||||||
var result = base.Remove(hitObject);
|
var result = base.Remove(hitObject);
|
||||||
|
|
||||||
if (result)
|
if (result)
|
||||||
|
{
|
||||||
initialStateCache.Invalidate();
|
initialStateCache.Invalidate();
|
||||||
|
hitObjectInitialStateCache.Remove(hitObject);
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user