summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
authorPaul DiPietro <pauldipietro@users.noreply.github.com>2016-11-15 13:41:19 -0600
committerJason Smith <jason.smith@xamarin.com>2016-11-15 11:41:19 -0800
commit6bc6ee5c712b2d29402e895993e38b4666acc3f9 (patch)
tree1b94421da8b0bc198a4255e5296b283e7c9e2a01 /Xamarin.Forms.Platform.WinRT
parenta6bbed029c64d2d64b74eeb67e27a099abf70664 (diff)
downloadxamarin-forms-6bc6ee5c712b2d29402e895993e38b4666acc3f9.tar.gz
xamarin-forms-6bc6ee5c712b2d29402e895993e38b4666acc3f9.tar.bz2
xamarin-forms-6bc6ee5c712b2d29402e895993e38b4666acc3f9.zip
[WinRT] Fix ModalPushed/ModalPopped not firing (#490)
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;
}