mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
dont focus fields if using fingerprint locking
This commit is contained in:
@@ -24,15 +24,18 @@ namespace Bit.App.Pages
|
||||
{
|
||||
base.OnAppearing();
|
||||
await _vm.InitAsync();
|
||||
if(!_vm.FingerprintLock)
|
||||
{
|
||||
if(_vm.PinLock)
|
||||
{
|
||||
RequestFocus(PinEntry);
|
||||
}
|
||||
else if(!_vm.FingerprintLock)
|
||||
else
|
||||
{
|
||||
RequestFocus(MasterPasswordEntry);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void Unlock_Clicked(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user