summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT')
-rw-r--r--Xamarin.Forms.Platform.WinRT/Platform.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/Platform.cs b/Xamarin.Forms.Platform.WinRT/Platform.cs
index be146a9c..e5a989c0 100644
--- a/Xamarin.Forms.Platform.WinRT/Platform.cs
+++ b/Xamarin.Forms.Platform.WinRT/Platform.cs
@@ -98,7 +98,6 @@ namespace Xamarin.Forms.Platform.WinRT
_navModel.Clear();
_navModel.Push(newRoot, null);
- newRoot.NavigationProxy.Inner = this;
SetCurrent(newRoot, false, true);
Application.Current.NavigationProxy.Inner = this;
}
@@ -171,7 +170,6 @@ namespace Xamarin.Forms.Platform.WinRT
var tcs = new TaskCompletionSource<bool>();
_navModel.PushModal(page);
SetCurrent(page, animated, completedCallback: () => tcs.SetResult(true));
- page.NavigationProxy.Inner = this;
return tcs.Task;
}