소스 검색

Fix for library tags not triggering search

arkon 5 년 전
부모
커밋
85e7b78b21
1개의 변경된 파일12개의 추가작업 그리고 9개의 파일을 삭제
  1. 12 9
      app/src/main/java/eu/kanade/tachiyomi/ui/library/LibraryController.kt

+ 12 - 9
app/src/main/java/eu/kanade/tachiyomi/ui/library/LibraryController.kt

@@ -327,15 +327,6 @@ class LibraryController(
         val searchItem = menu.findItem(R.id.action_search)
         val searchView = searchItem.actionView as SearchView
 
-        if (query.isNotEmpty()) {
-            searchItem.expandActionView()
-            searchView.setQuery(query, true)
-            searchView.clearFocus()
-        }
-
-        // Mutate the filter icon because it needs to be tinted and the resource is shared.
-        menu.findItem(R.id.action_filter).icon.mutate()
-
         searchView.queryTextChanges()
             // Ignore events if this controller isn't at the top
             .filter { router.backstack.lastOrNull()?.controller() == this }
@@ -345,7 +336,19 @@ class LibraryController(
             }
             .launchInUI()
 
+        if (query.isNotEmpty()) {
+            searchItem.expandActionView()
+            searchView.setQuery(query, true)
+            searchView.clearFocus()
+
+            // Manually trigger the search since the binding doesn't trigger for some reason
+            searchRelay.call(query)
+        }
+
         searchItem.fixExpand(onExpand = { invalidateMenuOnExpand() })
+
+        // Mutate the filter icon because it needs to be tinted and the resource is shared.
+        menu.findItem(R.id.action_filter).icon.mutate()
     }
 
     fun search(query: String) {