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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user