From fa5c8c2c7595fdd17dc2a49a9c5b3545ca3b3be9 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 6 Jun 2019 09:39:48 -0400 Subject: [PATCH] always focus search bar on appear, resolves #521 --- src/App/Pages/Vault/CiphersPage.xaml.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/App/Pages/Vault/CiphersPage.xaml.cs b/src/App/Pages/Vault/CiphersPage.xaml.cs index 55bf634e1..14f0eb61e 100644 --- a/src/App/Pages/Vault/CiphersPage.xaml.cs +++ b/src/App/Pages/Vault/CiphersPage.xaml.cs @@ -51,10 +51,7 @@ namespace Bit.App.Pages if(!_hasFocused) { _hasFocused = true; - if(string.IsNullOrWhiteSpace(_autofillUrl)) - { - RequestFocus(_searchBar); - } + RequestFocus(_searchBar); } }