summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/AbsoluteLayout.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/AbsoluteLayout.cs')
-rw-r--r--Xamarin.Forms.Core/AbsoluteLayout.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Core/AbsoluteLayout.cs b/Xamarin.Forms.Core/AbsoluteLayout.cs
index aceec2b3..43924831 100644
--- a/Xamarin.Forms.Core/AbsoluteLayout.cs
+++ b/Xamarin.Forms.Core/AbsoluteLayout.cs
@@ -52,7 +52,7 @@ namespace Xamarin.Forms
protected override void LayoutChildren(double x, double y, double width, double height)
{
- foreach (View child in LogicalChildren)
+ foreach (View child in LogicalChildrenInternal)
{
Rectangle rect = ComputeLayoutForRegion(child, new Size(width, height));
rect.X += x;
@@ -79,7 +79,7 @@ namespace Xamarin.Forms
{
var bestFitSize = new Size();
var minimum = new Size();
- foreach (View child in LogicalChildren)
+ foreach (View child in LogicalChildrenInternal)
{
SizeRequest desiredSize = ComputeBoundingRegionDesiredSize(child);