From 13914333c03229da8cdff222f54f8404915aa9fb Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Tue, 19 May 2026 01:34:46 +0200 Subject: [PATCH] Fix search hotkey in single manga migration search --- CHANGELOG.md | 1 + src/base/components/AppbarSearch.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfb3f1c4..6ac71705 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). - (**Migration**) Fix search progress not getting updated after a manual search - (**Migration**) Fix going back to the migration page after a manual search with a changed search string - (**Migration**) Fix being able to start search without selected destination sources +- (**Migration**) Fix search hotkey (ctrl+f) in the single manga migration search page not focusing the search textfield - (**Reader**) Fix scrollbar appearing with "fit to widt/height/screen" page scale mode and applied safe area insets - (**Reader**) Fix wrongly positioned mobile progress bar current page indicator - (**Reader**) Fix mobile progress bar previous/next chapter button visibility on hover and while disabled diff --git a/src/base/components/AppbarSearch.tsx b/src/base/components/AppbarSearch.tsx index 5bb057f8..20244c50 100644 --- a/src/base/components/AppbarSearch.tsx +++ b/src/base/components/AppbarSearch.tsx @@ -46,7 +46,7 @@ export const AppbarSearch: React.FunctionComponent = (props) => { const isOpen = isSearchOpen || !!query; const updateSearchOpenState = (open: boolean) => { - if (!isClosable) { + if (!isClosable && !open) { return; }