1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

Only show IsBusy indicator on vault list pages

This commit is contained in:
Kyle Spearrin
2016-08-06 11:43:22 -04:00
parent 503561d838
commit 2d6407f9a0
2 changed files with 3 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ namespace Bit.App.Controls
private ISyncService _syncService;
private bool _syncIndicator;
public ExtendedContentPage(bool syncIndicator = true)
public ExtendedContentPage(bool syncIndicator = false)
{
_syncIndicator = syncIndicator;
_syncService = Resolver.Resolve<ISyncService>();
@@ -18,8 +18,6 @@ namespace Bit.App.Controls
if(_syncIndicator)
{
IsBusy = _syncService.SyncInProgress;
MessagingCenter.Subscribe<Application, bool>(Application.Current, "SyncCompleted", (sender, success) =>
{
IsBusy = _syncService.SyncInProgress;
@@ -48,7 +46,7 @@ namespace Bit.App.Controls
{
if(_syncIndicator)
{
IsBusy = _syncService.SyncInProgress;
IsBusy = false;
}
base.OnDisappearing();