1
0
mirror of https://github.com/bitwarden/mobile synced 2026-03-02 11:21:10 +00:00

fix for resuming autofill when back button was previously used to exit (#1451)

This commit is contained in:
Matt Portune
2021-07-06 11:10:17 -04:00
committed by GitHub
parent 8cf5d5728e
commit 9298d57f22

View File

@@ -46,6 +46,15 @@ namespace Bit.App.Pages
}, _mainContent);
}
protected override bool OnBackButtonPressed()
{
if (Device.RuntimePlatform == Device.Android)
{
_appOptions.Uri = null;
}
return base.OnBackButtonPressed();
}
private async void RowSelected(object sender, SelectionChangedEventArgs e)
{
((ExtendedCollectionView)sender).SelectedItem = null;