mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +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();
|
base.OnAppearing();
|
||||||
await _vm.InitAsync();
|
await _vm.InitAsync();
|
||||||
|
if(!_vm.FingerprintLock)
|
||||||
|
{
|
||||||
if(_vm.PinLock)
|
if(_vm.PinLock)
|
||||||
{
|
{
|
||||||
RequestFocus(PinEntry);
|
RequestFocus(PinEntry);
|
||||||
}
|
}
|
||||||
else if(!_vm.FingerprintLock)
|
else
|
||||||
{
|
{
|
||||||
RequestFocus(MasterPasswordEntry);
|
RequestFocus(MasterPasswordEntry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void Unlock_Clicked(object sender, EventArgs e)
|
private void Unlock_Clicked(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue