summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/StackLayout.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/StackLayout.cs')
-rw-r--r--Xamarin.Forms.Core/StackLayout.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Xamarin.Forms.Core/StackLayout.cs b/Xamarin.Forms.Core/StackLayout.cs
index 4dc7bfa3..e115a23d 100644
--- a/Xamarin.Forms.Core/StackLayout.cs
+++ b/Xamarin.Forms.Core/StackLayout.cs
@@ -1,4 +1,5 @@
using System;
+using Xamarin.Forms.Internals;
namespace Xamarin.Forms
{
@@ -73,10 +74,10 @@ namespace Xamarin.Forms
ComputeConstraintForView(view, false);
}
- internal override void InvalidateMeasure(InvalidationTrigger trigger)
+ internal override void InvalidateMeasureInternal(InvalidationTrigger trigger)
{
_layoutInformation = new LayoutInformation();
- base.InvalidateMeasure(trigger);
+ base.InvalidateMeasureInternal(trigger);
}
void AlignOffAxis(LayoutInformation layout, StackOrientation orientation, double widthConstraint, double heightConstraint)