Browse Source

Minor fix in TransformedBounds.

pull/544/head
Jeremy Koritzinsky 10 years ago
parent
commit
f75399a7b8
  1. 2
      src/Avalonia.SceneGraph/VisualTree/TransformedBounds.cs

2
src/Avalonia.SceneGraph/VisualTree/TransformedBounds.cs

@ -49,7 +49,7 @@ namespace Avalonia.VisualTree
context.LineTo(Bounds.BottomRight * Transform);
context.LineTo(Bounds.BottomLeft * Transform);
context.LineTo(Bounds.TopLeft * Transform);
context.EndFigure(false);
context.EndFigure(true);
}
return geometry;
}

Loading…
Cancel
Save