diff --git a/src/App/Pages/Vault/VaultListCiphersPage.cs b/src/App/Pages/Vault/VaultListCiphersPage.cs index 8510ee0704..dc19a55432 100644 --- a/src/App/Pages/Vault/VaultListCiphersPage.cs +++ b/src/App/Pages/Vault/VaultListCiphersPage.cs @@ -274,7 +274,7 @@ namespace Bit.App.Pages if(string.IsNullOrWhiteSpace(_uri) && !_folder && string.IsNullOrWhiteSpace(_folderId) && string.IsNullOrWhiteSpace(_collectionId) && !_favorites) { - Search.FocusWithDelay(); + Search.FocusWithDelay(forceDelay: true); } } diff --git a/src/App/Utilities/Extentions.cs b/src/App/Utilities/Extentions.cs index e1f9962adf..ff5caf34e5 100644 --- a/src/App/Utilities/Extentions.cs +++ b/src/App/Utilities/Extentions.cs @@ -37,9 +37,9 @@ namespace Bit.App return !page.IsPortrait(); } - public static void FocusWithDelay(this View view, int delay = 1000) + public static void FocusWithDelay(this View view, int delay = 1000, bool forceDelay = false) { - if(Device.RuntimePlatform == Device.Android) + if(Device.RuntimePlatform == Device.Android || forceDelay) { Task.Run(async () => { diff --git a/src/iOS/Resources/search.png b/src/iOS/Resources/search.png index 95b7b318bd..18580ded97 100644 Binary files a/src/iOS/Resources/search.png and b/src/iOS/Resources/search.png differ diff --git a/src/iOS/Resources/search@2x.png b/src/iOS/Resources/search@2x.png index a083321cf0..8c94f938c3 100644 Binary files a/src/iOS/Resources/search@2x.png and b/src/iOS/Resources/search@2x.png differ diff --git a/src/iOS/Resources/search@3x.png b/src/iOS/Resources/search@3x.png index c9dbfd9f70..af62be6d58 100644 Binary files a/src/iOS/Resources/search@3x.png and b/src/iOS/Resources/search@3x.png differ