1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-16 15:03:37 +08:00

Remove shallPropagate

This commit is contained in:
smoogipoo
2020-02-25 11:30:33 +09:00
Unverified
parent 6c28fd21c7
commit f71c45cb1b
3 changed files with 3 additions and 3 deletions
@@ -91,7 +91,7 @@ namespace osu.Game.Rulesets.Osu.UI.Cursor
{
base.Update();
Invalidate(Invalidation.DrawNode, shallPropagate: false);
Invalidate(Invalidation.DrawNode);
const int fade_clock_reset_threshold = 1000000;
+1 -1
View File
@@ -129,7 +129,7 @@ namespace osu.Game.Graphics.Backgrounds
{
base.Update();
Invalidate(Invalidation.DrawNode, shallPropagate: false);
Invalidate(Invalidation.DrawNode);
if (CreateNewTriangles)
addTriangles(false);
+1 -1
View File
@@ -150,7 +150,7 @@ namespace osu.Game.Screens.Menu
frequencyAmplitudes[i] = 0;
}
Invalidate(Invalidation.DrawNode, shallPropagate: false);
Invalidate(Invalidation.DrawNode);
}
protected override DrawNode CreateDrawNode() => new VisualisationDrawNode(this);