diff --git a/src/App/Pages/Vault/VaultListCiphersPage.cs b/src/App/Pages/Vault/VaultListCiphersPage.cs index 8510ee070..dc19a5543 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 e1f9962ad..ff5caf34e 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 95b7b318b..18580ded9 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 a083321cf..8c94f938c 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 c9dbfd9f7..af62be6d5 100644 Binary files a/src/iOS/Resources/search@3x.png and b/src/iOS/Resources/search@3x.png differ