Remove shallPropagate

This commit is contained in:
smoogipoo 2020-02-25 11:30:33 +09:00
parent 6c28fd21c7
commit f71c45cb1b
3 changed files with 3 additions and 3 deletions

View File

@ -91,7 +91,7 @@ protected override void Update()
{
base.Update();
Invalidate(Invalidation.DrawNode, shallPropagate: false);
Invalidate(Invalidation.DrawNode);
const int fade_clock_reset_threshold = 1000000;

View File

@ -129,7 +129,7 @@ protected override void Update()
{
base.Update();
Invalidate(Invalidation.DrawNode, shallPropagate: false);
Invalidate(Invalidation.DrawNode);
if (CreateNewTriangles)
addTriangles(false);

View File

@ -150,7 +150,7 @@ protected override void Update()
frequencyAmplitudes[i] = 0;
}
Invalidate(Invalidation.DrawNode, shallPropagate: false);
Invalidate(Invalidation.DrawNode);
}
protected override DrawNode CreateDrawNode() => new VisualisationDrawNode(this);