Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#356) AvaloniaMath: connect the issue to a TODO comment
Browse files Browse the repository at this point in the history
ForNeVeR committed Feb 1, 2023
1 parent da2f25f commit 1ffc047
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AvaloniaMath/Rendering/AvaloniaElementRenderer.cs
Original file line number Diff line number Diff line change
@@ -49,14 +49,14 @@ public void RenderTransformed(Box box, IEnumerable<Transformation> transforms, d
var scaledTransformations = transforms.Select(t => t.Scale(_scale)).ToList();
foreach (var transformation in scaledTransformations)
{
//TODO _drawingContext.PushTransform(ToTransform(transformation));
//TODO[#356] _drawingContext.PushTransform(ToTransform(transformation));
}

RenderElement(box, x, y);

for (var i = 0; i < scaledTransformations.Count; ++i)
{
//TODO _drawingContext.Pop();
//TODO[#356] _drawingContext.Pop();
}
}

0 comments on commit 1ffc047

Please sign in to comment.