mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
dont focus fields if using fingerprint locking
This commit is contained in:
parent
5761b47073
commit
1f74e102fa
1 changed files with 9 additions and 6 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue