summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/StackLayout.cs
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@users.noreply.github.com>2016-05-02 16:19:12 -0600
committerSamantha Houts <samantha@teamredwall.com>2016-05-02 15:19:12 -0700
commit5f8f47ff7ce934f4937ec428b3c1def6286f14da (patch)
tree832d48d28c09eccd8b39838d16b0b9887bff7e55 /Xamarin.Forms.Core/StackLayout.cs
parent70d0e406ec2fcaf8c883d9b7aa2fc287466645ca (diff)
downloadxamarin-forms-5f8f47ff7ce934f4937ec428b3c1def6286f14da.tar.gz
xamarin-forms-5f8f47ff7ce934f4937ec428b3c1def6286f14da.tar.bz2
xamarin-forms-5f8f47ff7ce934f4937ec428b3c1def6286f14da.zip
Prep VisualElement (and descendants) for removal of InternalsVisibleTo (#141)
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)