summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-09-30 11:59:00 -0700
committerJason Smith <jason.smith@xamarin.com>2016-09-30 11:59:00 -0700
commit686eb6d0f4ca341307a3a97702b52fc40c4eb391 (patch)
treeb0f1782345c4761f496a2192aaa33f0f9e44d8a8 /Xamarin.Forms.Platform.Android
parent353525e293716d16c74741c96ed1bcd628c24363 (diff)
downloadxamarin-forms-686eb6d0f4ca341307a3a97702b52fc40c4eb391.tar.gz
xamarin-forms-686eb6d0f4ca341307a3a97702b52fc40c4eb391.tar.bz2
xamarin-forms-686eb6d0f4ca341307a3a97702b52fc40c4eb391.zip
Fix indentation
Diffstat (limited to 'Xamarin.Forms.Platform.Android')
-rw-r--r--Xamarin.Forms.Platform.Android/AppCompat/FragmentContainer.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Xamarin.Forms.Platform.Android/AppCompat/FragmentContainer.cs b/Xamarin.Forms.Platform.Android/AppCompat/FragmentContainer.cs
index c44d711f..3931e207 100644
--- a/Xamarin.Forms.Platform.Android/AppCompat/FragmentContainer.cs
+++ b/Xamarin.Forms.Platform.Android/AppCompat/FragmentContainer.cs
@@ -119,18 +119,18 @@ namespace Xamarin.Forms.Platform.Android.AppCompat
public override void OnPause()
{
- Page currentPage = (Application.Current.MainPage as IPageContainer<Page>)?.CurrentPage;
- if (currentPage == null || currentPage == PageController)
- PageController?.SendDisappearing();
+ Page currentPage = (Application.Current.MainPage as IPageContainer<Page>)?.CurrentPage;
+ if (currentPage == null || currentPage == PageController)
+ PageController?.SendDisappearing();
base.OnPause();
}
public override void OnResume()
{
- Page currentPage = (Application.Current.MainPage as IPageContainer<Page>)?.CurrentPage;
- if (UserVisibleHint && (currentPage == null || currentPage == PageController))
- PageController?.SendAppearing();
+ Page currentPage = (Application.Current.MainPage as IPageContainer<Page>)?.CurrentPage;
+ if (UserVisibleHint && (currentPage == null || currentPage == PageController))
+ PageController?.SendAppearing();
base.OnResume();
}