From 13903168475f9f449ba63972c8689da50db24daf Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 4 Aug 2016 23:14:47 -0400 Subject: [PATCH] cleanup isbusy on page disappearing --- src/App/Controls/ExtendedContentPage.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/App/Controls/ExtendedContentPage.cs b/src/App/Controls/ExtendedContentPage.cs index d61eb4ef4..f261b7561 100644 --- a/src/App/Controls/ExtendedContentPage.cs +++ b/src/App/Controls/ExtendedContentPage.cs @@ -1,5 +1,4 @@ using Bit.App.Abstractions; -using System; using Xamarin.Forms; using XLabs.Ioc; @@ -37,5 +36,11 @@ namespace Bit.App.Controls googleAnalyticsService.TrackPage(GetType().Name); base.OnAppearing(); } + + protected override void OnDisappearing() + { + IsBusy = false; + base.OnDisappearing(); + } } }