about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbrian <brian.tan88@gmail.com>2024-10-30 08:13:52 -0400
committerGitHub <noreply@github.com>2024-10-30 12:13:52 +0000
commit21ba1fad55f4780a9c2a638830e3b21f8f46c5f3 (patch)
tree3dd15c83fc5217ff8f4ae251c1a68677268e1918 /src
parent1fc684aaef6dd851b4d6c9a23673fcf4e7170722 (diff)
downloadvoidsky-21ba1fad55f4780a9c2a638830e3b21f8f46c5f3.tar.zst
Added blur to search's onPressMenu (#6017)
Diffstat (limited to 'src')
-rw-r--r--src/view/screens/Search/Search.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx
index 652d4ec38..4978b4d4a 100644
--- a/src/view/screens/Search/Search.tsx
+++ b/src/view/screens/Search/Search.tsx
@@ -679,6 +679,7 @@ export function SearchScreen(
   }, [])
 
   const onPressMenu = React.useCallback(() => {
+    textInput.current?.blur()
     setDrawerOpen(true)
   }, [setDrawerOpen])