mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 18:38:27 +03:00
fix gap in background color application resulting in flashing during transitions, part 2 (#1595)
This commit is contained in:
parent
4ed7491116
commit
41098ff05b
2 changed files with 2 additions and 2 deletions
|
@ -161,7 +161,7 @@ namespace Bit.App.Pages
|
||||||
if (DoOnce())
|
if (DoOnce())
|
||||||
{
|
{
|
||||||
var page = new SendsPage(_vm.Filter, _vm.Type != null);
|
var page = new SendsPage(_vm.Filter, _vm.Type != null);
|
||||||
await Navigation.PushModalAsync(new NavigationPage(page), false);
|
await Navigation.PushModalAsync(new NavigationPage(page));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -234,7 +234,7 @@ namespace Bit.App.Pages
|
||||||
{
|
{
|
||||||
var page = new CiphersPage(_vm.Filter, _vm.FolderId != null, _vm.CollectionId != null,
|
var page = new CiphersPage(_vm.Filter, _vm.FolderId != null, _vm.CollectionId != null,
|
||||||
_vm.Type != null, deleted: _vm.Deleted);
|
_vm.Type != null, deleted: _vm.Deleted);
|
||||||
await Navigation.PushModalAsync(new NavigationPage(page), false);
|
await Navigation.PushModalAsync(new NavigationPage(page));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue