diff --git a/app/src/main/java/eu/kanade/tachiyomi/ui/browse/source/index/IndexController.kt b/app/src/main/java/eu/kanade/tachiyomi/ui/browse/source/index/IndexController.kt index d7d2ae960..8d97598d6 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/ui/browse/source/index/IndexController.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/ui/browse/source/index/IndexController.kt @@ -31,7 +31,6 @@ import kotlinx.coroutines.flow.filter import kotlinx.coroutines.flow.launchIn import kotlinx.coroutines.flow.onEach import kotlinx.serialization.json.buildJsonObject -import reactivecircus.flowbinding.android.view.clicks import reactivecircus.flowbinding.appcompat.QueryTextEvent import reactivecircus.flowbinding.appcompat.queryTextEvents import uy.kohesive.injekt.Injekt @@ -245,9 +244,7 @@ open class IndexController : filterSheet?.setOnShowListener { actionFab?.isVisible = false } filterSheet?.setOnDismissListener { actionFab?.isVisible = true } - actionFab?.clicks() - ?.onEach { filterSheet?.show() } - ?.launchIn(viewScope) + actionFab?.setOnClickListener { filterSheet?.show() } actionFab?.isVisible = true }