mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
fix for resuming autofill when back button was previously used to exit (#1451)
This commit is contained in:
parent
8cf5d5728e
commit
9298d57f22
1 changed files with 9 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue